1
0
mirror of https://github.com/gsi-upm/senpy synced 2024-09-20 22:01:41 +00:00
senpy/.makefiles
J. Fernando Sánchez a951696317 Updated makefiles from senpy
Use the current build version in tests.
Tests will be slower (they require a build), but they will always contain the
latest dockerfile changes.
2018-01-08 00:44:40 +01:00
..
base.mk Merge commit '89f3a0eca96bbd877b466212f6ee27794f149458' into fix-makefiles 2017-12-13 15:24:28 +01:00
docker.mk Merge commit '89f3a0eca96bbd877b466212f6ee27794f149458' into fix-makefiles 2017-12-13 15:24:28 +01:00
git.mk Trying to fix push to github 2017-10-03 16:39:09 +02:00
k8s.mk Updated makefiles from senpy 2017-10-03 15:08:16 +02:00
makefiles.mk Add '.makefiles/' from commit '21ff551769dd7e4ebd895b90d918040859a90e41' 2017-10-03 11:28:56 +02:00
precommit.mk Add '.makefiles/' from commit '21ff551769dd7e4ebd895b90d918040859a90e41' 2017-10-03 11:28:56 +02:00
python.mk Updated makefiles from senpy 2018-01-08 00:44:40 +01:00
README.md Add '.makefiles/' from commit '21ff551769dd7e4ebd895b90d918040859a90e41' 2017-10-03 11:28:56 +02:00

These makefiles are recipes for several common tasks in different types of projects. To add them to your project, simply do:

git remote add makefiles ssh://git@lab.cluster.gsi.dit.upm.es:2200/docs/templates/makefiles.git
git subtree add --prefix=.makefiles/ makefiles master
touch Makefile
echo "include .makefiles/base.mk" >> Makefile

Now you can take advantage of the recipes. For instance, to add useful targets for a python project, just add this to your Makefile:

include .makefiles/python.mk

You may need to set special variables like the name of your project or the python versions you're targetting. Take a look at each specific .mk file for more information, and the Makefile in the senpy project for a real use case.

If you update the makefiles from your repository, make sure to push the changes for review in upstream (this repository):

make makefiles-push

It will automatically commit all unstaged changes in the .makefiles folder.