fcoin/Makefile
Christopher Jeffrey 68159daf46
add fee estimator.
2016-06-09 17:10:49 -07:00

15 lines
296 B
Makefile

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