mirror of
https://github.com/pgrondek/config.git
synced 2024-11-21 19:43:42 +00:00
22 lines
510 B
Makefile
22 lines
510 B
Makefile
SERVER_PARTS=bash ssh vim docker terraform
|
|
CLIENT_PARTS=i3 packages git postman
|
|
|
|
.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);)
|
|
|