mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-13 11:12:47 +00:00
20 lines
294 B
Makefile
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
|