Initial commit: Makefile supporting creation of release archive.

This commit is contained in:
Achim D. Brucker 2019-06-23 18:09:33 +01:00
parent cc79ffc241
commit 01b743445e
1 changed files with 14 additions and 0 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
authorarchive.zip: * examples/*.tex
rm -rf authorarchive
mkdir -p authorarchive/examples
cp -r icons authorarchive
(cd examples; for i in *.tex; do pdflatex $$i; pdflatex $$i; pdflatex $$i; done)
cp examples/*.tex authorarchive/examples/
cp examples/*.pdf authorarchive/examples/
cp *.sty authorarchive
cp LICENSE authorarchive
cp *.md authorarchive
chmod -R go+u-w authorarchive
zip -r authorarchive.zip authorarchive
rm -rf authorarchive