9 lines
97 B
Makefile
9 lines
97 B
Makefile
all:
|
|
node-gyp configure
|
|
node-gyp build
|
|
|
|
clean:
|
|
@node-gyp clean 2>/dev/null
|
|
|
|
.PHONY: all clean
|