commit 1858a6527bf121656eaa7463141314b1754a7a3a Author: Gary Talent Date: Tue May 5 23:38:46 2026 -0500 Initial commit diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..ec01ec09b --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +BC_VAR_PROJECT_NAME=ox +BC_VAR_PROJECT_NAME_CAP=Ox +BC_VAR_DEVENV_ROOT=util +BUILDCORE_PATH=deps/ox/deps/buildcore +include ${BUILDCORE_PATH}/base.mk + +.PHONY: git-setup-ox-remote +git-setup-ox-remote: + git remote add -f ox-master git@git.drinkingtea.net:drinkingtea/ox.git + +.PHONY: git-pull-ox +git-pull-ox: + git fetch ox-master master + git subtree pull --prefix deps/ox ox-master master --squash + +.PHONY: git-push-ox +git-push-ox: + git subtree push --prefix=deps/ox ox-master master