initial files
[bitonic-mengthesis.git] / docs / Makefile
1 SOURCES = $(wildcard *.tex)
2 OBJECTS = $(patsubst %.tex, %.pdf, $(SOURCES))
3
4 all: $(OBJECTS)
5
6 %.pdf : %.tex
7         xelatex -halt-on-error $<
8         xelatex -halt-on-error $<
9
10 clean: cleanup
11         rm -f $(OBJECTS)
12
13 cleanup:
14         rm -f *.log *.aux *.nav *.snm *.toc *.vrb *.out
15