Makefile (278B)
1 # Math Art Makefile 2 # M. Yamanaka 3 # email: myamanaka@live.com 4 # website: csmyamanaka.com 5 # license: MIT (See included "LICENSE" file for details) 6 7 CC=lua 8 9 all: rose spiral 10 11 spiral: 12 $(CC) $@.lua 13 14 rose: 15 $(CC) $@.lua 16 17 topng: 18 mogrify -format png *.svg 19 20 clean: 21 rm -f *.svg *.png