forked from CartoDB/node-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·81 lines (58 loc) · 2.62 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
MODULE_NAME := $(shell node -e "console.log(require('./package.json').binary.module_name)")
NODE_MAPNIK_BUILD ?= release
NODE_GYP_FLAGS ?= -j $(shell sh -c "nproc 2>/dev/null || sysctl -n hw.physicalcpu 2>/dev/null || echo 1") --ENABLE_GLIBC_WORKAROUND=true
CC ?= clang
CXX ?= clang++
default: $(NODE_MAPNIK_BUILD)
deps/geometry/include/mapbox/geometry.hpp:
git submodule update --init
node_modules:
CC="${CC}" CXX="${CXX}" npm install --ignore-scripts
mason_packages/.link/bin/mapnik-config: deps/geometry/include/mapbox/geometry.hpp
./install_mason.sh
pre_build_check:
mapnik-config -v |>/dev/null
release_base: pre_build_check deps/geometry/include/mapbox/geometry.hpp node_modules
V=1 ./node_modules/.bin/node-pre-gyp configure build --loglevel=error $(NODE_GYP_FLAGS)
@echo "run 'make clean' for full rebuild"
debug_base: pre_build_check deps/geometry/include/mapbox/geometry.hpp node_modules
V=1 ./node_modules/.bin/node-pre-gyp configure build --loglevel=error --debug $(NODE_GYP_FLAGS)
@echo "run 'make clean' for full rebuild"
release: mason_packages/.link/bin/mapnik-config
PATH="./mason_packages/.link/bin/:${PATH}" CC="clang" CXX="clang++" $(MAKE) release_base
debug: mason_packages/.link/bin/mapnik-config
PATH="./mason_packages/.link/bin/:${PATH}" CC="clang" CXX="clang++" $(MAKE) debug_base
strip:
(find lib -type f \( -iname \*.so \) | xargs strip -s) 2>/dev/null || true
(find lib -type f \( -iname \*.node \) | xargs strip -s) 2>/dev/null || true
(find lib -type f \( -iname \*.dylib \) | xargs strip -s) 2>/dev/null || true
(find lib -type f \( -iname \*.input \) | xargs strip -s) 2>/dev/null || true
(find ./lib/binding/bin/* | xargs strip -s) 2>/dev/null || true
coverage:
./scripts/coverage.sh
clean:
rm -rf lib/binding
rm -rf build
rm -rf mason
find test/ -name *actual* -exec rm {} \;
echo "run make distclean to also remove mason_packages and node_modules"
distclean: clean
rm -rf node_modules
rm -rf mason_packages
xcode: node_modules
./node_modules/.bin/node-pre-gyp configure -- -f xcode
@# If you need more targets, e.g. to run other npm scripts, duplicate the last line and change NPM_ARGUMENT
SCHEME_NAME="$(MODULE_NAME)" SCHEME_TYPE=library BLUEPRINT_NAME=$(MODULE_NAME) BUILDABLE_NAME=$(MODULE_NAME).node scripts/create_scheme.sh
SCHEME_NAME="npm test" SCHEME_TYPE=node BLUEPRINT_NAME=$(MODULE_NAME) BUILDABLE_NAME=$(MODULE_NAME).node NODE_ARGUMENT="`npm bin tape`/tape test/*.test.js" scripts/create_scheme.sh
open build/binding.xcodeproj
docs:
npm run docs
test:
npm test
check: test
testpack:
rm -f ./*tgz
npm pack
tar -ztvf *tgz
rm -f ./*tgz
.PHONY: test docs release debug strip