diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-03-26 21:09:52 +0000 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2016-03-26 21:09:52 +0000 |
commit | 0b56cb11bf72120248229cac1785ac29333d2baf (patch) | |
tree | a472c7f1bc690d541776bfec79dc8df2929c7bba /presentation/Makefile | |
parent | 9c6340cef62cf8e517b46d0d6cee99ad63702e9f (diff) |
Add combox presentation. "Introduction" drafted.
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 |