summaryrefslogtreecommitdiffstats
path: root/presentation/Makefile
blob: c2444b2d1a60abe2413aff9dfab5a30290f5f20a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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