diff options
Diffstat (limited to 'presentation/Makefile')
-rw-r--r-- | presentation/Makefile | 30 |
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 |