Skip to content
Snippets Groups Projects
Commit 01728ae1 authored by Manuel Hachtkemper's avatar Manuel Hachtkemper
Browse files

Makefile: all target for the entire build process (unfortunately you have to...

Makefile: all target for the entire build process (unfortunately you have to run make doc three times)
parent 8bb83ffe
Branches master
No related tags found
No related merge requests found
DOCUMENT_NAME = Arbeit
XELATEX = xelatex
all: doc bib doc_twice
default:
@echo 'make bib | Create bibliography, Arbeit.aux required. To create them ,run make doc.'
@echo 'make doc | Create complete document. Read output and run make bib or make doc again if needed.'
......@@ -12,5 +14,9 @@ bib:
doc:
$(XELATEX) $(DOCUMENT_NAME).tex
doc_twice:
$(XELATEX) $(DOCUMENT_NAME).tex
$(XELATEX) $(DOCUMENT_NAME).tex
clean:
rm -f .log quit.tex *.acn *gdf *.glg *. glo *. gls *.ist *.lol *.nlo *.nls *.ps *.out *.dvi *.log *.aux *.blg *.toc *.log *.bbl *.lof *.lot *.idx *.brf *.ilg *.ind sections/*.aux images/*.aux
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment