diff --git a/Makefile b/Makefile index d7dbd03..c1a691b 100644 --- a/Makefile +++ b/Makefile @@ -40,3 +40,16 @@ configure-gba: .PHONY: configure-gba-debug configure-gba-debug: ${BC_CMD_SETUP_BUILD} --toolchain=deps/gbabuildcore/cmake/modules/GBA.cmake --target=gba --current_build=0 --build_type=debug --build_root=${BC_VAR_BUILD_PATH} + +.PHONY: git-setup-nostalgia-remote +git-setup-nostalgia-remote: + git remote add -f nostalgia-master git@git.drinkingtea.net:drinkingtea/nostalgia.git + +.PHONY: git-pull-nostalgia +git-pull-nostalgia: + git fetch nostalgia-master master + git subtree pull --prefix deps/nostalgia nostalgia-master master + +.PHONY: git-push-nostalgia +git-push-nostalgia: + git subtree push --prefix=deps/nostalgia nostalgia-master master