18 lines
614 B
Makefile
18 lines
614 B
Makefile
configs:
|
|
$(MAKE) -C core config
|
|
$(MAKE) -C controller config
|
|
|
|
git-clone-http:
|
|
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
|
|
|
|
git-clone-ssh:
|
|
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
|
|
|
|
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
|