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