1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-13 11:12:47 +00:00
Files
mywebsite/mongoui/mongoui-master/node_modules/mongodb/node_modules/bson/Makefile
2015-06-25 16:28:41 -05:00

20 lines
294 B
Makefile

NODE = node
NPM = npm
NODEUNIT = node_modules/nodeunit/bin/nodeunit
all: clean node_gyp
test: clean node_gyp
npm test
node_gyp: clean
node-gyp configure build
clean:
node-gyp clean
browserify:
node_modules/.bin/onejs build browser_build/package.json browser_build/bson.js
.PHONY: all