summaryrefslogtreecommitdiff
path: root/info/context-top-ten/src/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /info/context-top-ten/src/Makefile
Initial commit
Diffstat (limited to 'info/context-top-ten/src/Makefile')
-rw-r--r--info/context-top-ten/src/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/info/context-top-ten/src/Makefile b/info/context-top-ten/src/Makefile
new file mode 100644
index 0000000000..b8cb751423
--- /dev/null
+++ b/info/context-top-ten/src/Makefile
@@ -0,0 +1,22 @@
+TEXOPT = --purgeall --xtx
+NONSRC = cmds.pdf ../cmds.pdf
+TEMP = cmds.tui cmds.log cmds.tmp cmds.tuo *.mp
+
+cmds.pdf: cmds.tex
+ @echo "ConTeXting..."
+ @texexec $(TEXOPT) cmds.tex
+ @mv cmds.pdf ../
+ @echo "Done."
+
+all: cmds.pdf
+ @echo "All done."
+
+clean: cleantemp
+ @echo "Cleaning pdf..."
+ @rm -fv $(NONSRC)
+ @echo "Done."
+
+cleantemp:
+ @echo "Cleaning..."
+ @rm -fv $(TEMP)
+ @echo "Done."