mammoth.js/makefile
2016-06-21 22:48:52 +01:00

16 lines
351 B
Makefile

.PHONY: test mammoth.browser.js npm-install
test:
npm test
setup: npm-install mammoth.browser.min.js
npm-install:
npm install
mammoth.browser.js:
node_modules/.bin/browserify lib/index.js --standalone mammoth -p browserify-prepend-licenses > $@
mammoth.browser.min.js: mammoth.browser.js
node_modules/.bin/uglifyjs mammoth.browser.js -c > $@