summaryrefslogtreecommitdiff
path: root/Makefile
blob: a9d603358182c00e930ead285f5a4c019433eede (plain)
1
2
3
4
5
6
7
8
9
10
.POSIX:
.SUFFIXES: .tex .pdf
all: progreport/document.pdf execsumm/document.pdf
progreport/document.pdf: progreport/document.tex format.tex
execsumm/document.pdf: execsumm/document.tex format.tex
.tex.pdf:
	cd $$(dirname $@) && pdftex --jobname $$(basename $*) $$(basename $<)
clean:
	find -E . -regex ".*\.(pdf|log)" | xargs rm -f
.PHONY: all clean