Makefile for LaTeX; +make clean
[bachelor-thesis/written-stuff.git] / Ausarbeitung / Makefile
diff --git a/Ausarbeitung/Makefile b/Ausarbeitung/Makefile
new file mode 100644 (file)
index 0000000..15fecda
--- /dev/null
@@ -0,0 +1,21 @@
+all: main.pdf
+
+images:
+       $(MAKE) -C images all
+
+main.pdf: main.tex images
+       pdflatex main.tex
+       makeindex main.idx
+       bibtex main.aux
+       pdflatex main.tex
+       pdflatex main.tex
+
+clean:
+       $(MAKE) -C images clean
+       rm -f main.pdf *.aux *.bbl *.blg *.idx *.log *.lof *.ind *.ilg *.out *.toc *.backup *~
+
+archive: main.pdf
+       cp main.pdf thesis-`date +%Y-%m-%d-%Hh%M`.pdf
+
+.PHONY: images clean
+
This page took 0.026498 seconds and 4 git commands to generate.