JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
ec22ed027a15cecaf0b87cef7686d78da2650aa1
[peach-html5-editor.git] / Makefile
1 OBJECTS= 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)