flocore-node/Makefile
Christopher Jeffrey 3e355bd0fc bitcoind.js
2014-08-12 15:04:13 -04:00

21 lines
344 B
Makefile

all:
@type node-gyp > /dev/null 2>&1 && make gyp || make waf
waf:
node-waf configure build
gyp:
node-gyp configure
node-gyp build
clean:
@type node-gyp > /dev/null 2>&1 && make clean-gyp || make clean-waf
clean-waf:
@rm -rf ./build .lock-wscript
clean-gyp:
@node-gyp clean 2>/dev/null
.PHONY: all waf gyp clean clean-waf clean-gyp