forked from sinara-hw/datasheets
14 lines
341 B
Makefile
14 lines
341 B
Makefile
inputs = 1008 1106 1124 1550 2118-2128 2238 2245 4410-4412 4456-4457 4459 4624 5108 5432 5632 5633 5518-5528 5538 5568 6302 7210 8451-8453 8452-8462
|
|
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
|