X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=Makefile;h=9bbe26a3b2ee28d80ae5876e5770d89fc3268966;hb=4cff8737a670f1aeb0236d18d41bceeab4407db5;hp=24c826c84f497ff5abebd95da6e68ac6d20ac2af;hpb=cc2911623e5e9a50e19ae8233a990c2e633c218e;p=peach-html5-editor.git diff --git a/Makefile b/Makefile index 24c826c..9bbe26a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,8 @@ -all: parse-html.js +OBJECTS= parse-html.js test.js +all: $(OBJECTS) -parse-html.js: parse-html.coffee +%.js: %.coffee coffee -c $< + +clean: + rm -f $(OBJECTS)