]> jspc29.x-matter.uni-frankfurt.de Git - mvd_docu.git/commitdiff
Adding Makefile for dataformat: .tex -> .pdf
authorPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 9 Oct 2014 17:34:47 +0000 (19:34 +0200)
committerPhilipp Klaus <klaus@physik.uni-frankfurt.de>
Thu, 9 Oct 2014 17:34:47 +0000 (19:34 +0200)
dataformat/Makefile [new file with mode: 0644]

diff --git a/dataformat/Makefile b/dataformat/Makefile
new file mode 100644 (file)
index 0000000..a40dd37
--- /dev/null
@@ -0,0 +1,18 @@
+
+all: main clean
+
+pdflatex := pdflatex
+bibtex8 := bibtex8
+
+.PHONY: main
+main: main.tex biblio.bib DataFileStructure.tex
+       $(pdflatex) main.tex
+       -$(bibtex8) --wolfgang main
+       $(pdflatex) main.tex
+       $(pdflatex) main.tex
+
+
+.PHONY: clean
+clean:
+       -@rm *.toc *.log *.aux *.out *.bbl *.blg
+