Makefile (397B)
1 SOURCES=velf.tex ad-note.tex echo.tex distort.tex dynamic.tex reverb.tex chorus.tex 2 OBJECTS=$(SOURCES:.tex=.png) 3 4 all:$(OBJECTS) 5 6 %.png: %.tex 7 pdflatex -shell-escape $< 8 convert -trim -density 300 $(<:.tex=.pdf) $@ 9 rm -f $(<:.tex=.pdf) $(<:.tex=.log) $(<:.tex=.aux) $(<:.tex=-pic*) $(<:.tex=.pgf-plot*) 10 11 .PHONY: clean 12 clean: 13 rm -f *.png *~ *.aux *.auxlock *.table *.log *.gnuplot *.dpth *.dep 14