blob: 8f132cb83487ea9745913fba05d7d7d0430c52f7 (
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 ${@D} && pdftex --jobname ${*F} ${<F}
clean:
find -E . -regex ".*\.(pdf|log)" | xargs rm -f
.PHONY: all clean
|