scripts

misc scripts and tools
git clone git://git.2f30.org/scripts
Log | Files | Refs

Makefile (198B)


      1 # wireframe puffy generator
      2 
      3 URL = http://www.openbsd.org/images/tshirt-23.gif
      4 SRC = tshirt-23.gif
      5 DST = puffy.png
      6 
      7 all: $(DST)
      8 
      9 $(DST): $(SRC)
     10 	sh puffy.sh
     11 
     12 $(SRC):
     13 	wget $(URL)
     14 
     15 clean:
     16 	rm $(DST)