X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=Makefile;h=5ae1b2b56acf03b71664ac9132dc30840e889881;hb=55d296a75a0471af76f0dc05494e9eb98567d314;hp=2e57917abc7a49878a65dacf2e4707077862ef40;hpb=7f7d1a5bb2b882566b4c8f398d4bf02d6fcf0c6d;p=peach-html5-editor.git diff --git a/Makefile b/Makefile index 2e57917..5ae1b2b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ -all: parse-html.js test.js +OBJECTS= parse-html.js test.js html5-named-entities.js +all: $(OBJECTS) %.js: %.coffee - coffee -c $< + coffee -c $< && sed -i -e 's/\(parse-html\|html5-named-entities\)[.]coffee/\1.js/g' $@ + +clean: + rm -f $(OBJECTS)