UNPKG
libpcap
Version:
latest (0.0.1)
0.0.1
Node bindings for libpcap
github.com/officert/node-libpcap
officert/node-libpcap
libpcap
/
Makefile
17 lines
(12 loc)
•
195 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SRC_DIR = src BUILD_DIR = build
build: clean
if [ ! -d
$(BUILD_DIR)
]; then \ node-gyp configure; \ fi; node-gyp build;
run:
node test/test.js
clean:
rm -rf
$(BUILD_DIR)
.PHONY
: build