diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-15 12:24:50 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-01-15 12:24:50 -0500 |
commit | 7c3d77247f39cb45bc8cc2b02c9cc01231de909a (patch) | |
tree | 299190ac30f077ed2cbf3411c153ec366d62cabb /report/Makefile | |
parent | 7da9b190232c071cd198280f3e917972e4c3031b (diff) |
skeleton of combox report ready.
Diffstat (limited to 'report/Makefile')
-rw-r--r-- | report/Makefile | 28 |
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 |