summaryrefslogtreecommitdiffstats
path: root/presentation/Makefile
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2016-03-26 21:09:52 +0000
committerSiddharth Ravikumar <sravik@bgsu.edu>2016-03-26 21:09:52 +0000
commit0b56cb11bf72120248229cac1785ac29333d2baf (patch)
treea472c7f1bc690d541776bfec79dc8df2929c7bba /presentation/Makefile
parent9c6340cef62cf8e517b46d0d6cee99ad63702e9f (diff)
Add combox presentation. "Introduction" drafted.
Diffstat (limited to 'presentation/Makefile')
-rw-r--r--presentation/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/presentation/Makefile b/presentation/Makefile
new file mode 100644
index 0000000..c2444b2
--- /dev/null
+++ b/presentation/Makefile
@@ -0,0 +1,30 @@
+#!/usr/bin/make
+#
+# combox - presentation
+#
+# Makefile
+#
+# By Siddharth Ravikumar <sravik@bgsu.edu>
+#
+# No rights reserved. Dedicated to Public Domain.
+# <https://creativecommons.org/publicdomain/zero/1.0/>
+
+PDF = combox-p.pdf
+TEX = p.tex
+DVI = p.dvi
+
+all: $(PDF)
+ @evince $(PDF) &
+
+$(PDF): $(DVI)
+ dvipdf $< $@
+
+$(DVI): $(TEX)
+ @latex $<
+ @latex $<
+ @latex $<
+
+clean:
+ rm -f $(PDF) $(DVI) *.aux *.log *~
+
+.PHONY: clean all