diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..dadf2d71 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: + @cp lib/term.js term.js + @uglifyjs -o term.min.js term.js + +clean: + @rm term.js + @rm term.min.js + +bench: + @node test/bench + +.PHONY: clean all