summaryrefslogtreecommitdiff
path: root/docs/Makefile
blob: cbd243667f776260c5ea8b798297bf4fa8e4e192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SOURCES = $(wildcard *.tex)
OBJECTS = $(patsubst %.tex, %.pdf, $(SOURCES))

all: $(OBJECTS)

%.pdf : %.tex
	xelatex -halt-on-error $<
	xelatex -halt-on-error $<

clean: cleanup
	rm -f $(OBJECTS)

cleanup:
	rm -f *.log *.aux *.nav *.snm *.toc *.vrb *.out