diff options
Diffstat (limited to 'pdf/Makefile')
-rw-r--r-- | pdf/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/pdf/Makefile b/pdf/Makefile index 72c81fe..1472f07 100644 --- a/pdf/Makefile +++ b/pdf/Makefile @@ -1,22 +1,20 @@ FILES = doc -TEX = $(FILES:%=%.tex) PDF = $(FILES:%=%.pdf) # Debug flags -ifdef DEBUG -LATEXMK_FLAGS += -verbose -else +ifndef DEBUG LATEXMK_FLAGS += -quiet endif all pdf: $(PDF) -%.pdf: %.tex assets/*.tex +.SECONDEXPANSION: +%.pdf: %.tex $$(wildcard $$*.bib) assets/*.tex latexmk $(LATEXMK_FLAGS) -pdf -f $< mostlyclean: latexmk $(LATEXMK_FLAGS) -c - rm -f $(FILES:%=%.synctex.*) + rm -f $(FILES:%=%.synctex.*) $(FILES:%=%.bbl) rm -f assets/*.aux clean: mostlyclean |