summaryrefslogtreecommitdiff
path: root/Makefile
blob: e13cc58ec17b034e44b1fcfa95803530bb549f3c (plain) (blame)
1
2
3
4
5
6
7
TARGET=$(subst .tex,.pdf,$(wildcard */*.tex))

all: $(TARGET)

%.pdf : %.tex
	cd `dirname $<` && pdflatex -shell-escape `basename $<` && pdflatex -shell-escape `basename $<` && cd ..