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