mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-21 19:43:17 +01:00
20 lines
398 B
Makefile
20 lines
398 B
Makefile
all: Braindump_SS16.pdf
|
|
|
|
continuous: $(PDF).continuous
|
|
|
|
clean: cleanup rmpdf all
|
|
|
|
rmpdf:
|
|
@-rm -f *.pdf
|
|
|
|
cleanup:
|
|
@-rm -f *.aux *.fdb_latexmk *.fls *.log
|
|
|
|
%.continuous: %.pdf
|
|
@latexmk -quiet -jobname=$(@:%.continuous=%) -pvc -pdf $(@:%.continuous=%).tex
|
|
|
|
%.pdf: %.tex
|
|
@latexmk -quiet -jobname=$(@:%.pdf=%) -pdf -halt-on-error $< 1>/dev/null
|
|
|
|
.PHONY: all continuous cleanup single clean rmpdf
|