1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-28 00:41:43 +00:00
senpy/.makefiles/makefiles.mk

16 lines
540 B
Makefile
Raw Normal View History

2017-09-27 19:32:08 +00:00
makefiles-remote:
git ls-remote --exit-code makefiles 2> /dev/null || git remote add makefiles ssh://git@lab.gsi.upm.es:2200/docs/templates/makefiles.git
2017-09-27 19:32:08 +00:00
makefiles-commit: makefiles-remote
git add -f .makefiles
git commit -em "Updated makefiles from ${NAME}"
2017-09-27 19:43:54 +00:00
makefiles-push:
2018-11-06 16:02:59 +00:00
git fetch makefiles $(NAME)
2017-09-27 19:32:08 +00:00
git subtree push --prefix=.makefiles/ makefiles $(NAME)
makefiles-pull: makefiles-remote
git subtree pull --prefix=.makefiles/ makefiles master --squash
2018-11-06 16:10:08 +00:00
.PHONY:: makefiles-remote makefiles-commit makefiles-push makefiles-pull