diff options
| author | stkhan <personal@slickd.xyz> | 2022-03-29 19:55:52 -0800 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-03-29 19:55:52 -0800 |
| commit | 356b726ec5ac1d6796cfb5ca6171d20b4d0783a1 (patch) | |
| tree | 335d668f66ade4a59ffafc95e5befbdb2fd67679 /Makefile | |
| parent | c9faadd2309e0d101d99754ecbe3a874f2e6c835 (diff) | |
Icons in dwmblocks, and cleaned up scripts
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,20 +1,22 @@ +include config.mk all: sarc sarc: clean @./scripts/set_theme.sh - make -C dwm-6.3 - make -C st-0.8.4 - make -C dmenu-5.0 + make -C $(DWM) + make -C $(ST) + make -C $(DMENU) make -C farbfeld make -C sent make -C wmname rm colors.h +c: clean install: - make install -C dwm-6.3 - make install -C st-0.8.4 - make install -C dmenu-5.0 + make install -C $(DWM) + make install -C $(ST) + make install -C $(DMENU) make install -C scripts make install -C farbfeld make install -C sent |