makefile.

This commit is contained in:
Christopher Jeffrey
2013-08-10 15:54:46 -05:00
parent 628af0532f
commit 6efc4f0086
+12
View File
@@ -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