JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
rename main.js -> js.js
[crayon_mockup.git] / Makefile
1 objects= js.js css.css
2
3 all: $(objects)
4
5 clean:
6         rm -f $(objects)
7
8 css.css: style.styl
9         stylus -c -p $< > $@ || (rm -f $@; false)
10
11 js.js: main.coffee
12         coffee -c -p $< > $@ || (rm -f $@; false)