From 01b743445eb32d5375789872f7a62425da57df22 Mon Sep 17 00:00:00 2001 From: "Achim D. Brucker" Date: Sun, 23 Jun 2019 18:09:33 +0100 Subject: [PATCH] Initial commit: Makefile supporting creation of release archive. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2a341a8 --- /dev/null +++ b/Makefile @@ -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 +