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