datasheets/Makefile

15 lines
282 B
Makefile
Raw Normal View History

2025-01-09 00:58:51 +08:00
inputs = 1124 1125 2118-2128 2238 2245 4410-4412 4456 5108 5432 5518-5528 5568 5716 7210
2024-10-27 21:29:31 +08:00
dir = build
all: $(inputs)
$(inputs) : % : %.tex
pdflatex -shell-escape $@.tex
if ! test -d "$(dir)"; then mkdir build; fi
mv $@.pdf build/
rm $@.log
clean:
rm -r _minted* *.aux *.out