workspace/Makefile

19 lines
614 B
Makefile
Raw Normal View History

2024-04-30 07:36:32 +00:00
configs:
$(MAKE) -C core config
$(MAKE) -C controller config
2024-05-02 22:46:11 +00:00
git-clone-http:
2024-04-30 07:36:32 +00:00
git clone https://git.serguzim.me/emgauwa/common.git
git clone https://git.serguzim.me/emgauwa/core.git
git clone https://git.serguzim.me/emgauwa/controller.git
2024-05-02 22:46:11 +00:00
git-clone-ssh:
2024-04-30 07:36:32 +00:00
git clone git@git.serguzim.me:emgauwa/common.git
git clone git@git.serguzim.me:emgauwa/core.git
git clone git@git.serguzim.me:emgauwa/controller.git
2024-05-01 11:56:05 +00:00
2024-05-02 22:46:11 +00:00
git-status:
@printf "===== COMMON =====\n" && cd common && git status
@printf "\n\n===== CORE =====\n" && cd core && git status
@printf "\n\n===== CONTROLLER =====\n" && cd controller && git status