UNPKG
libxmljs2
Version:
latest (0.37.0)
0.37.0
0.35.0
0.33.0
0.32.0
0.31.0
0.30.1
0.30.0
0.29.0
0.28.0
0.27.0
0.26.7
0.26.6
0.26.5
0.26.4
0.26.3
0.26.2
0.26.1
0.26.0
0.25.5
0.25.4
0.25.3
0.25.2
0.25.1
0.25.0
0.24.0
0.23.0
0.22.0
0.21.7
0.21.6
0.21.4
0.21.3
0.21.2
0.21.1
0.21.0
0.20.3
0.20.2
0.20.1
0.20.0
libxml bindings for v8 javascript engine
github.com/marudor/libxmljs2
marudor/libxmljs2
libxmljs2
/
Makefile
19 lines
(11 loc)
•
207 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
target=./build/Release/xmljs.node
all:
$(target)
build/:
node-gyp configure
$(target)
: build/ src/*.cc src/*.h node-gyp build
clean:
rm -rf build
test: clean
$(target)
npm test
.PHONY
: test clean