diff options
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 |