summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3742337130b4837d8e01b0eade553b14d32c494d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
SHELL=bash
TARGET=$(subst .tex,.pdf,$(wildcard */*.tex))

all: $(TARGET)

%.pdf : %.tex
	cd `dirname $<` && \
		pdflatex -shell-escape `basename $<` && \
		bibtex `basename -s .tex $<`.aux; \
		pdflatex -shell-escape `basename $<` && \
		pdflatex -shell-escape `basename $<` && \
		cd ..