summaryrefslogtreecommitdiff
path: root/Makefile
blob: a7bada96b2990de24875a45bbdafca5ef1192f1c (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 $$(basename $<)
clean:
	find -E . -regex ".*\.(pdf|log)" | xargs rm -f
.PHONY: all clean