blob: 1e93f1c7f8cf2836fa2ca514f87423ed293c5fc3 (
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 document.tex
clean:
find -E . -regex ".*\.(pdf|log)" | xargs rm -f
.PHONY: all clean
|