diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -10,6 +10,12 @@ update-version: @sed -i'' -E "s/(versionnumber.*)\{.*\}/\1\{${VERSION}\}/g" version.tex @sed -i'' -E "s/(versiondate.*)\{.*\}/\1\{`date '+%B%e, %Y'`\}/g" version.tex +tag-release: + @echo git add -p Makefile + @echo git add -p version.tex + @echo git commit -m "'"${OUTPUT} v${VERSION}"'" + @echo git tag -a v${VERSION} -m "'"Version ${VERSION}"'" + clean: @rm -f *.aux *.log |