mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 00:02:28 +00:00
15 lines
478 B
Makefile
15 lines
478 B
Makefile
makefiles-remote:
|
|
git remote add makefiles ssh://git@lab.cluster.gsi.dit.upm.es:2200/docs/templates/makefiles.git || true
|
|
|
|
makefiles-commit: makefiles-remote
|
|
git add -f .makefiles
|
|
git commit -em "Updated makefiles from ${NAME}"
|
|
|
|
makefiles-push:
|
|
git subtree push --prefix=.makefiles/ makefiles $(NAME)
|
|
|
|
makefiles-pull: makefiles-remote
|
|
git subtree pull --prefix=.makefiles/ makefiles master --squash
|
|
|
|
.PHONY:: makefiles-remote makefiles-commit makefiles-push makefiles-pull
|