gorillajs
Version:
A smart development environment designed to easily install and neatly manage web applications. Gorilla JS frees you from the repetitive daily tasks like apps installation, database management, creation of virtual environment, server configuration… And it
21 lines (14 loc) • 344 B
Plain Text
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