Grundgerüst angelegt
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
TEXFILE = zusammenfassung.tex
|
||||
PDFFILE = $(TEXFILE:.tex=.pdf)
|
||||
DEPFILES = $(wildcard *.tex)
|
||||
|
||||
.PHONY: $(PDFFILE) all clean
|
||||
|
||||
all: $(PDFFILE)
|
||||
|
||||
$(PDFFILE): $(TEXFILE) $(DEPFILES)
|
||||
latexmk -pdf -pdflatex="pdflatex -interactive=nonstopmode" $(TEXFILE)
|
||||
|
||||
clean:
|
||||
latexmk -CA
|
||||
rm -f $(TEXFILES:.tex=.synctex.gz) $(TEXFILE:.tex=.bbl) $(TEXFILE:.tex=.tdo)
|
||||
Reference in New Issue
Block a user