X-Git-Url: https://jasonwoof.com/gitweb/?p=crayon_mockup.git;a=blobdiff_plain;f=Makefile;h=74ddf8511fce1193be8fda936c7d5515609427d0;hp=907e445d1832b767f146c2cd2ced91cd47c08bc7;hb=d7d9898f16c11d98423ff35278a123813cf8393e;hpb=804571d5567f5c6b9ec21c4e1db9fcc40aaf6823 diff --git a/Makefile b/Makefile index 907e445..74ddf85 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ -objects= auto.js style.css +objects= js.js css.css all: $(objects) clean: rm -f $(objects) -style.css: styl.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)