15 lines
296 B
Makefile
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
|