X-Git-Url: https://jasonwoof.com/gitweb/?p=crayon_mockup.git;a=blobdiff_plain;f=Makefile;h=74ddf8511fce1193be8fda936c7d5515609427d0;hp=cc4e070adffaec3d74e0a92614865ea18c068eea;hb=HEAD;hpb=c8077c7a5c9ce3610d8f926b7fdf8969974728c8 diff --git a/Makefile b/Makefile index cc4e070..74ddf85 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,12 @@ -objects= auto.js +objects= js.js css.css all: $(objects) clean: rm -f $(objects) -%.js: %.coffee - coffee -c $< +css.css: style.styl + stylus -c -p $< > $@ || (rm -f $@; false) + +js.js: main.coffee + coffee -c -p $< > $@ || (rm -f $@; false)