From d7529a1501011ca951bdc234ee0756fbedd568b1 Mon Sep 17 00:00:00 2001 From: Philipp Klaus Date: Thu, 9 Oct 2014 19:34:47 +0200 Subject: [PATCH] Adding Makefile for dataformat: .tex -> .pdf --- dataformat/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 dataformat/Makefile 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 + -- 2.43.0