2024-11-30 10:26:25 +01:00
|
|
|
TYP_SRC := $(wildcard DM*.typ)
|
|
|
|
TEX_SRC := $(wildcard DM*.tex)
|
|
|
|
|
|
|
|
|
|
|
|
all: all-typ $(TEX_SRC:%.tex=%.pdf)
|
|
|
|
all-typ: $(TYP_SRC:%.typ=%.typ.pdf)
|
|
|
|
|
|
|
|
%.typ.pdf: %.typ
|
|
|
|
typst compile $^ $@
|
|
|
|
|
|
|
|
|
|
|
|
%.pdf: %.tex
|
|
|
|
pdflatex -shell-escape -interaction=nonstopmode $^
|
|
|
|
|
2024-09-27 09:26:24 +02:00
|
|
|
clean:
|
|
|
|
rm -f *.aux *.log *.pdf
|