flocore-node/Makefile
2014-09-10 16:57:18 -07:00

10 lines
126 B
Makefile

all:
@node-gyp clean 2>/dev/null
node-gyp configure
node-gyp build
clean:
@node-gyp clean 2>/dev/null
.PHONY: all clean