#!/usr/bin/make -f DIAMOND_FIGURES=$(patsubst %,diamond_%.jpg,F1 SF1 SF2 SF3) MBLAST_FIGURES=$(patsubst %,mblast_%.png,1 2 3 4 5 6) all: $(DIAMOND_FIGURES) $(MBLAST_FIGURES) $(DIAMOND_FIGURES): diamond_%.jpg: wget -O $@ "http://www.nature.com/nmeth/journal/v12/n1/images/nmeth.3176-$*.jpg" $(MBLAST_FIGURES): mblast_%.png: wget -O temp.gif "http://www.omicsonline.org/JDMGPimages/2153-0602-4-135-g00$*.gif" convert temp.gif $@ rm -f temp.gif diamond_F1_a.jpg: diamond_F1.jpg convert -crop '335x311+0x0' $^ $@ diamond_F1_b.jpg: diamond_F1.jpg convert -crop '320x311+335x0' $^ $@ diamond_F1_c.jpg: diamond_F1.jpg convert -crop '291x311+655x0' $^ $@