tools: replace closure-linter with eslint
[platform/upstream/nodejs.git] / Makefile
1 -include config.mk
2
3 BUILDTYPE ?= Release
4 PYTHON ?= python
5 DESTDIR ?=
6 SIGN ?=
7 PREFIX ?= /usr/local
8
9 # Determine EXEEXT
10 EXEEXT := $(shell $(PYTHON) -c \
11                 "import sys; print('.exe' if sys.platform == 'win32' else '')")
12
13 NODE ?= ./iojs$(EXEEXT)
14 NODE_EXE = iojs$(EXEEXT)
15 NODE_G_EXE = iojs_g$(EXEEXT)
16
17 # Default to verbose builds.
18 # To do quiet/pretty builds, run `make V=` to set V to an empty string,
19 # or set the V environment variable to an empty string.
20 V ?= 1
21
22 # BUILDTYPE=Debug builds both release and debug builds. If you want to compile
23 # just the debug build, run `make -C out BUILDTYPE=Debug` instead.
24 ifeq ($(BUILDTYPE),Release)
25 all: out/Makefile $(NODE_EXE)
26 else
27 all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
28 endif
29
30 # The .PHONY is needed to ensure that we recursively use the out/Makefile
31 # to check for changes.
32 .PHONY: $(NODE_EXE) $(NODE_G_EXE)
33
34 $(NODE_EXE): config.gypi out/Makefile
35         $(MAKE) -C out BUILDTYPE=Release V=$(V)
36         ln -fs out/Release/$(NODE_EXE) $@
37
38 $(NODE_G_EXE): config.gypi out/Makefile
39         $(MAKE) -C out BUILDTYPE=Debug V=$(V)
40         ln -fs out/Debug/$(NODE_EXE) $@
41
42 out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/toolchain.gypi deps/v8/build/features.gypi deps/v8/tools/gyp/v8.gyp node.gyp config.gypi
43         $(PYTHON) tools/gyp_node.py -f make
44
45 config.gypi: configure
46         if [ -f $@ ]; then
47                 $(error Stale $@, please re-run ./configure)
48         else
49                 $(error No $@, please run ./configure first)
50         fi
51
52 install: all
53         $(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
54
55 uninstall:
56         $(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
57
58 clean:
59         -rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) blog.html email.md
60         @if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' | xargs rm -rf; fi
61         -rm -rf node_modules
62
63 distclean:
64         -rm -rf out
65         -rm -f config.gypi icu_config.gypi
66         -rm -f config.mk
67         -rm -rf $(NODE_EXE) $(NODE_G_EXE) blog.html email.md
68         -rm -rf node_modules
69         -rm -rf deps/icu
70         -rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
71         -rm -f $(BINARYTAR).* $(TARBALL).*
72
73 check: test
74
75 cctest: all
76         @out/$(BUILDTYPE)/$@
77
78 test: | cctest  # Depends on 'all'.
79         $(PYTHON) tools/test.py --mode=release message parallel sequential -J
80         $(MAKE) jslint
81         $(MAKE) cpplint
82
83 test-parallel: all
84         $(PYTHON) tools/test.py --mode=release parallel -J
85
86 test-valgrind: all
87         $(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
88
89 test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
90         ./$(NODE_EXE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
91                 --directory="$(shell pwd)/test/gc/node_modules/weak" \
92                 --nodedir="$(shell pwd)"
93
94 build-addons: $(NODE_EXE)
95         rm -rf test/addons/doc-*/
96         ./$(NODE_EXE) tools/doc/addon-verify.js
97         $(foreach dir, \
98                         $(sort $(dir $(wildcard test/addons/*/*.gyp))), \
99                         ./$(NODE_EXE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
100                                         --directory="$(shell pwd)/$(dir)" \
101                                         --nodedir="$(shell pwd)" && ) echo "build done"
102
103 test-gc: all test/gc/node_modules/weak/build/Release/weakref.node
104         $(PYTHON) tools/test.py --mode=release gc
105
106 test-build: all build-addons
107
108 test-all: test-build test/gc/node_modules/weak/build/Release/weakref.node
109         $(PYTHON) tools/test.py --mode=debug,release
110
111 test-all-valgrind: test-build
112         $(PYTHON) tools/test.py --mode=debug,release --valgrind
113
114 test-ci:
115         $(PYTHON) tools/test.py -p tap --logfile test.tap --mode=release message parallel sequential
116         $(MAKE) jslint
117         $(MAKE) cpplint
118
119 test-release: test-build
120         $(PYTHON) tools/test.py --mode=release
121
122 test-debug: test-build
123         $(PYTHON) tools/test.py --mode=debug
124
125 test-message: test-build
126         $(PYTHON) tools/test.py message
127
128 test-simple: | cctest  # Depends on 'all'.
129         $(PYTHON) tools/test.py parallel sequential
130
131 test-pummel: all
132         $(PYTHON) tools/test.py pummel
133
134 test-internet: all
135         $(PYTHON) tools/test.py internet
136
137 test-debugger: all
138         $(PYTHON) tools/test.py debugger
139
140 test-npm: $(NODE_EXE)
141         rm -rf npm-cache npm-tmp npm-prefix
142         mkdir npm-cache npm-tmp npm-prefix
143         cd deps/npm ; npm_config_cache="$(shell pwd)/npm-cache" \
144              npm_config_prefix="$(shell pwd)/npm-prefix" \
145              npm_config_tmp="$(shell pwd)/npm-tmp" \
146              ../../$(NODE_EXE) cli.js install --ignore-scripts
147         cd deps/npm ; npm_config_cache="$(shell pwd)/npm-cache" \
148              npm_config_prefix="$(shell pwd)/npm-prefix" \
149              npm_config_tmp="$(shell pwd)/npm-tmp" \
150              ../../$(NODE_EXE) cli.js run-script test-all && \
151              ../../$(NODE_EXE) cli.js prune --prod && \
152              cd ../.. && \
153              rm -rf npm-cache npm-tmp npm-prefix
154
155 test-npm-publish: $(NODE_EXE)
156         npm_package_config_publishtest=true ./$(NODE_EXE) deps/npm/test/run.js
157
158 test-addons: test-build
159         $(PYTHON) tools/test.py --mode=release addons
160
161 test-timers:
162         $(MAKE) --directory=tools faketime
163         $(PYTHON) tools/test.py --mode=release timers
164
165 test-timers-clean:
166         $(MAKE) --directory=tools clean
167
168 apidoc_sources = $(wildcard doc/api/*.markdown)
169 apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
170           $(addprefix out/,$(apidoc_sources:.markdown=.json))
171
172 apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
173
174 apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
175
176 doc: $(apidoc_dirs) $(apiassets) $(apidocs) tools/doc/ $(NODE_EXE)
177
178 $(apidoc_dirs):
179         mkdir -p $@
180
181 out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
182         cp $< $@
183
184 out/doc/%: doc/%
185         cp -r $< $@
186
187 out/doc/api/%.json: doc/api/%.markdown $(NODE_EXE)
188         out/Release/$(NODE_EXE) tools/doc/generate.js --format=json $< > $@
189
190 out/doc/api/%.html: doc/api/%.markdown $(NODE_EXE)
191         out/Release/$(NODE_EXE) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
192
193 docopen: out/doc/api/all.html
194         -google-chrome out/doc/api/all.html
195
196 docclean:
197         -rm -rf out/doc
198
199 RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
200 VERSION=v$(RAWVER)
201 FULLVERSION=$(VERSION)
202 RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
203 PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
204 NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
205 ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
206 DESTCPU ?= x64
207 else
208 DESTCPU ?= ia32
209 endif
210 ifeq ($(DESTCPU),x64)
211 ARCH=x64
212 else
213 ifeq ($(DESTCPU),arm)
214 ARCH=arm
215 else
216 ARCH=x86
217 endif
218 endif
219 ifdef NIGHTLY
220 TAG = nightly-$(NIGHTLY)
221 FULLVERSION=$(VERSION)-$(TAG)
222 endif
223 TARNAME=iojs-$(FULLVERSION)
224 TARBALL=$(TARNAME).tar
225 BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
226 BINARYTAR=$(BINARYNAME).tar
227 XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
228 XZ_COMPRESSION ?= 9
229 PKG=out/$(TARNAME).pkg
230 PACKAGEMAKER ?= /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
231
232 PKGSRC=iojs-$(DESTCPU)-$(RAWVER).tgz
233 ifdef NIGHTLY
234 PKGSRC=iojs-$(DESTCPU)-$(RAWVER)-$(TAG).tgz
235 endif
236
237 dist: doc $(TARBALL) $(PKG)
238
239 PKGDIR=out/dist-osx
240
241 release-only:
242         @if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
243                 exit 0 ; \
244         else \
245           echo "" >&2 ; \
246                 echo "The git repository is not clean." >&2 ; \
247                 echo "Please commit changes before building release tarball." >&2 ; \
248                 echo "" >&2 ; \
249                 git status --porcelain | egrep -v '^\?\?' >&2 ; \
250                 echo "" >&2 ; \
251                 exit 1 ; \
252         fi
253         @if [ "$(NIGHTLY)" != "" -o "$(RELEASE)" = "1" ]; then \
254                 exit 0; \
255         else \
256           echo "" >&2 ; \
257                 echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
258           echo "Did you remember to update src/node_version.h?" >&2 ; \
259           echo "" >&2 ; \
260                 exit 1 ; \
261         fi
262
263 pkg: $(PKG)
264
265 $(PKG): release-only
266         rm -rf $(PKGDIR)
267         rm -rf out/deps out/Release
268         $(PYTHON) ./configure --dest-cpu=ia32 --tag=$(TAG)
269         $(MAKE) install V=$(V) DESTDIR=$(PKGDIR)/32
270         rm -rf out/deps out/Release
271         $(PYTHON) ./configure --dest-cpu=x64 --tag=$(TAG)
272         $(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
273         SIGN="$(APP_SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
274         lipo $(PKGDIR)/32/usr/local/bin/iojs \
275                 $(PKGDIR)/usr/local/bin/iojs \
276                 -output $(PKGDIR)/usr/local/bin/iojs-universal \
277                 -create
278         mv $(PKGDIR)/usr/local/bin/iojs-universal $(PKGDIR)/usr/local/bin/iojs
279         rm -rf $(PKGDIR)/32
280         cat tools/osx-pkg.pmdoc/index.xml.tmpl | sed -e 's|__iojsversion__|'$(FULLVERSION)'|g' | sed -e 's|__npmversion__|'$(NPMVERSION)'|g' > tools/osx-pkg.pmdoc/index.xml
281         $(PACKAGEMAKER) \
282                 --id "org.nodejs.Node" \
283                 --doc tools/osx-pkg.pmdoc \
284                 --out $(PKG)
285         SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
286
287 $(TARBALL): release-only $(NODE_EXE) doc
288         git checkout-index -a -f --prefix=$(TARNAME)/
289         mkdir -p $(TARNAME)/doc/api
290         cp doc/iojs.1 $(TARNAME)/doc/iojs.1
291         cp -r out/doc/api/* $(TARNAME)/doc/api/
292         rm -rf $(TARNAME)/deps/v8/{test,samples,tools/profviz} # too big
293         rm -rf $(TARNAME)/doc/images # too big
294         rm -rf $(TARNAME)/deps/uv/{docs,samples,test}
295         rm -rf $(TARNAME)/deps/openssl/{doc,demos,test}
296         rm -rf $(TARNAME)/deps/zlib/contrib # too big, unused
297         find $(TARNAME)/ -type l | xargs rm # annoying on windows
298         tar -cf $(TARNAME).tar $(TARNAME)
299         rm -rf $(TARNAME)
300         gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
301 ifeq ($(XZ), 0)
302         xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
303 endif
304         rm $(TARNAME).tar
305
306 tar: $(TARBALL)
307
308 $(BINARYTAR): release-only
309         rm -rf $(BINARYNAME)
310         rm -rf out/deps out/Release
311         $(PYTHON) ./configure --prefix=/ --dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS)
312         $(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
313         cp README.md $(BINARYNAME)
314         cp LICENSE $(BINARYNAME)
315         cp CHANGELOG.md $(BINARYNAME)
316         tar -cf $(BINARYNAME).tar $(BINARYNAME)
317         rm -rf $(BINARYNAME)
318         gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
319 ifeq ($(XZ), 0)
320         xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
321 endif
322         rm $(BINARYNAME).tar
323
324 binary: $(BINARYTAR)
325
326 $(PKGSRC): release-only
327         rm -rf dist out
328         $(PYTHON) configure --prefix=/ \
329                 --dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS)
330         $(MAKE) install DESTDIR=dist
331         (cd dist; find * -type f | sort) > packlist
332         pkg_info -X pkg_install | \
333                 egrep '^(MACHINE_ARCH|OPSYS|OS_VERSION|PKGTOOLS_VERSION)' > build-info
334         pkg_create -B build-info -c tools/pkgsrc/comment -d tools/pkgsrc/description \
335                 -f packlist -I /opt/local -p dist -U $(PKGSRC)
336
337 pkgsrc: $(PKGSRC)
338
339 haswrk=$(shell which wrk > /dev/null 2>&1; echo $$?)
340 wrk:
341 ifneq ($(haswrk), 0)
342         @echo "please install wrk before proceeding. More information can be found in benchmark/README.md." >&2
343         @exit 1
344 endif
345
346 bench-net: all
347         @$(NODE) benchmark/common.js net
348
349 bench-crypto: all
350         @$(NODE) benchmark/common.js crypto
351
352 bench-tls: all
353         @$(NODE) benchmark/common.js tls
354
355 bench-http: wrk all
356         @$(NODE) benchmark/common.js http
357
358 bench-fs: all
359         @$(NODE) benchmark/common.js fs
360
361 bench-misc: all
362         @$(MAKE) -C benchmark/misc/function_call/
363         @$(NODE) benchmark/common.js misc
364
365 bench-array: all
366         @$(NODE) benchmark/common.js arrays
367
368 bench-buffer: all
369         @$(NODE) benchmark/common.js buffers
370
371 bench-url: all
372         @$(NODE) benchmark/common.js url
373
374 bench-events: all
375         @$(NODE) benchmark/common.js events
376
377 bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events
378
379 bench: bench-net bench-http bench-fs bench-tls
380
381 bench-http-simple:
382          benchmark/http_simple_bench.sh
383
384 bench-idle:
385         ./$(NODE_EXE) benchmark/idle_server.js &
386         sleep 1
387         ./$(NODE_EXE) benchmark/idle_clients.js &
388
389 jslint:
390         ./$(NODE_EXE) tools/eslint/bin/eslint.js src/*.js lib/*.js --reset --quiet
391
392 CPPLINT_EXCLUDE ?=
393 CPPLINT_EXCLUDE += src/node_lttng.cc
394 CPPLINT_EXCLUDE += src/node_root_certs.h
395 CPPLINT_EXCLUDE += src/node_lttng_tp.h
396 CPPLINT_EXCLUDE += src/node_win32_perfctr_provider.cc
397 CPPLINT_EXCLUDE += src/queue.h
398 CPPLINT_EXCLUDE += src/tree.h
399 CPPLINT_EXCLUDE += src/v8abbr.h
400
401 CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard src/*.cc src/*.h src/*.c tools/icu/*.h tools/icu/*.cc deps/debugger-agent/include/* deps/debugger-agent/src/*))
402
403 cpplint:
404         @$(PYTHON) tools/cpplint.py $(CPPLINT_FILES)
405
406 lint: jslint cpplint
407
408 .PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
409         check uninstall install install-includes install-bin all staticlib \
410         dynamiclib test test-all test-addons build-addons website-upload pkg \
411         blog blogclean tar binary release-only bench-http-simple bench-idle \
412         bench-all bench bench-misc bench-array bench-buffer bench-net \
413         bench-http bench-fs bench-tls cctest