X-Git-Url: https://jasonwoof.com/gitweb/?p=peach-html5-editor.git;a=blobdiff_plain;f=Makefile;h=3c4cdd22a007d0c4bf1d47fd11c9945eace0ffca;hp=5ae1b2b56acf03b71664ac9132dc30840e889881;hb=928527c2ae6efd3536d39f1cf066f5ee44209212;hpb=68bf5e08a951f954f9e22836560f5b9b77ef8d02 diff --git a/Makefile b/Makefile index 5ae1b2b..3c4cdd2 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,12 @@ -OBJECTS= parse-html.js test.js html5-named-entities.js +OBJECTS= parser.js parser_tests.js parser_no_browser_helper.js editor.js editor_tests.js page_dark.css + all: $(OBJECTS) %.js: %.coffee - coffee -c $< && sed -i -e 's/\(parse-html\|html5-named-entities\)[.]coffee/\1.js/g' $@ + coffee -c $< && sed -i -e 's/\(parser\|parser_no_browser_helper\)[.]coffee/\1.js/g' $@ + +%.css: %.styl + stylus $< clean: rm -f $(OBJECTS)