From: Philipp Klaus Date: Thu, 9 Oct 2014 17:34:47 +0000 (+0200) Subject: Adding Makefile for dataformat: .tex -> .pdf X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=d7529a1501011ca951bdc234ee0756fbedd568b1;p=mvd_docu.git Adding Makefile for dataformat: .tex -> .pdf --- diff --git a/dataformat/Makefile b/dataformat/Makefile new file mode 100644 index 0000000..a40dd37 --- /dev/null +++ b/dataformat/Makefile @@ -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 +