mirror of
https://gitlab.cs.fau.de/ik15ydit/latexandmore.git
synced 2024-11-22 19:59:31 +01:00
8cd4dc250e
pdftk is no longer in repos of recent distributions due to licensing issues, so I replaced it with pdfunite from poppler-utils, which has the same functionality.
24 lines
657 B
Makefile
24 lines
657 B
Makefile
all: Konfluenz.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf Polynomordnung.pdf SystemF.pdf PumpingLemma.pdf
|
|
|
|
continuous: $(PDF).continuous
|
|
|
|
clean: cleanup rmpdf all
|
|
|
|
rmpdf:
|
|
@-rm -f *.pdf
|
|
|
|
cleanup:
|
|
@-rm -f *.aux *.fdb_latexmk *.fls *.log
|
|
|
|
single: all
|
|
@-pdfunite Polynomordnung.pdf Konfluenz.pdf SystemF.pdf Koinduktion_reduktion.pdf Strukturelle_Induktion.pdf PumpingLemma.pdf ThProgCheatsheet.pdf
|
|
|
|
|
|
%.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
|