fcoin/Makefile
2016-02-19 22:29:33 -08:00

13 lines
228 B
Makefile

all:
@browserify lib/bcoin.js -o bcoin.browser.js
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o bcoin.min.js bcoin.browser.js
clean:
@rm bcoin.browser.js
@rm bcoin.min.js
test:
@npm test
.PHONY: all clean test