From 1858a6527bf121656eaa7463141314b1754a7a3a Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Tue, 5 May 2026 23:38:46 -0500 Subject: [PATCH] Initial commit --- Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Makefile 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