X-Git-Url: https://jasonwoof.com/gitweb/?p=crayon_mockup.git;a=blobdiff_plain;f=Makefile;h=74ddf8511fce1193be8fda936c7d5515609427d0;hp=0ae83b64bc59deea50ec320612284f556f05d3fa;hb=d7d9898f16c11d98423ff35278a123813cf8393e;hpb=d2f3ec3082304334bb54981165fef2fbc645a7f8 diff --git a/Makefile b/Makefile index 0ae83b6..74ddf85 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -objects= main.js css.css +objects= js.js css.css all: $(objects) @@ -6,7 +6,7 @@ clean: rm -f $(objects) css.css: style.styl - stylus -c -p $< > $@ + stylus -c -p $< > $@ || (rm -f $@; false) -%.js: %.coffee - coffee -c $< +js.js: main.coffee + coffee -c -p $< > $@ || (rm -f $@; false)