From 0b56cb11bf72120248229cac1785ac29333d2baf Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Sat, 26 Mar 2016 21:09:52 +0000 Subject: Add combox presentation. "Introduction" drafted. --- presentation/Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 presentation/Makefile (limited to 'presentation/Makefile') 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 +# +# No rights reserved. Dedicated to Public Domain. +# + +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 -- cgit v1.2.3