mirror of
https://github.com/pgrondek/config.git
synced 2024-11-22 12:03:43 +00:00
12 lines
217 B
Makefile
12 lines
217 B
Makefile
SUB_DIRS=bash i3 packages ssh vim
|
|
|
|
.PHONY: clean_install
|
|
|
|
install:
|
|
@$(foreach dir,$(SUB_DIRS), $(MAKE) install -C $(dir);)
|
|
|
|
clean:
|
|
@$(foreach dir,$(SUB_DIRS), $(MAKE) clean -C $(dir);)
|
|
|
|
clean_install: clean install
|