summaryrefslogtreecommitdiffstats
path: root/report/Makefile
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2016-01-15 12:24:50 -0500
committerSiddharth Ravikumar <sravik@bgsu.edu>2016-01-15 12:24:50 -0500
commit7c3d77247f39cb45bc8cc2b02c9cc01231de909a (patch)
tree299190ac30f077ed2cbf3411c153ec366d62cabb /report/Makefile
parent7da9b190232c071cd198280f3e917972e4c3031b (diff)
skeleton of combox report ready.
Diffstat (limited to 'report/Makefile')
-rw-r--r--report/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/report/Makefile b/report/Makefile
new file mode 100644
index 0000000..3317a32
--- /dev/null
+++ b/report/Makefile
@@ -0,0 +1,28 @@
+#!/usr/bin/make
+#
+# combox - report
+#
+# Makefile
+#
+# By Siddharth Ravikumar <sravik@bgsu.edu>
+#
+# No rights reserved. Dedicated to Public Domain.
+# <https://creativecommons.org/publicdomain/zero/1.0/>
+
+PDF = combox-report.pdf
+SRC = combox.tex
+DVI = combox.dvi
+
+all: $(PDF)
+ @evince $(PDF) &
+
+$(PDF): $(DVI)
+ @dvipdf $< $@
+
+$(DVI): $(SRC)
+ @latex $<; latex $<; latex $<
+
+clean:
+ rm -f $(PDF) *.aux *.dvi *.log *~
+
+.PHONY: clean all