23 lines
389 B
Makefile
23 lines
389 B
Makefile
|
|
ALLTEX := $(wildcard *.tex)
|
|
ALLPDF := $(ALLTEX:.tex=.pdf)
|
|
|
|
all: $(ALLPDF)
|
|
|
|
.PHONY: clean allclean all
|
|
|
|
clean:
|
|
latexmk -c
|
|
|
|
distclean:
|
|
latexmk -C
|
|
|
|
mwe.pdf: mwe.tex
|
|
latexmk -pdflua -lualatex="lualatex --shell-escape %O %S" $<
|
|
|
|
doku.pdf: doku.tex cccbform.cls logo.pdf
|
|
latexmk -pdflua -lualatex="lualatex --shell-escape %O %S" $<
|
|
|
|
%.pdf :: %.tex cccbform.cls logo.pdf
|
|
latexmk -pdflua $<
|