Files
wt-tut-presentations/lib/latex-common/Makefile
2026-04-22 17:41:23 +02:00

12 lines
187 B
Makefile

SRCS=$(shell find examples -type f -name "*.tex")
PDFS=$(shell echo $(SRCS:.tex=.pdf) | sed -e "s/examples\\///g")
all: $(PDFS)
%.pdf: examples/%.tex
latexmk $<
clean:
rm -rf build