all: sinus.pdf sincos.pdf sine.pdf sine2.pdf sincos2.pdf bode.pdf .PHONY: all clean # we want all .gnuplot files to be 'made' into .eps files # the % replaces any name # in the rule: $< replaces the source # $@ replaces the target # example: convert $< $@ # %.eps: %.gnuplot gnuplot < $< %.eps: %.py python $< %.pdf: %.eps epstopdf $< clean: rm -f *.eps *.pdf
You need to create an account or log in to post comments to this site.