JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
code cleanup: var/func renames
[peach-html5-editor.git] / Makefile
1 OBJECTS= parser.js parser_tests.js parser_no_browser_helper.js editor.js editor_tests.js page_dark.css
2
3 all: $(OBJECTS)
4
5 %.js: %.coffee
6         coffee -c $< && sed -i -e 's/\(parser\|parser_no_browser_helper\)[.]coffee/\1.js/g' $@
7
8 %.css: %.styl
9         stylus $<
10
11 clean:
12         rm -f $(OBJECTS)