diff options
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 |