updated graphs for which two fit on one side
[bachelor-thesis/written-stuff.git] / Ausarbeitung / Makefile
1 all: main.pdf
2
3 images:
4 $(MAKE) -C images all
5
6 main.pdf: main.tex images
7 pdflatex main.tex
8 makeindex main.idx
9 bibtex main.aux
10 pdflatex main.tex
11 pdflatex main.tex
12
13 clean:
14 $(MAKE) -C images clean
15 rm -f main.pdf *.aux *.bbl *.blg *.idx *.log *.lof *.ind *.ilg *.out *.toc *.backup *~
16
17 archive: main.pdf
18 cp main.pdf thesis-`date +%Y-%m-%d-%Hh%M`.pdf
19
20 .PHONY: images clean
21
This page took 0.057225 seconds and 5 git commands to generate.