2012-01-17 22:02:15 +00:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-08 20:17:28 +00:00
|
|
|
PYTHON ?= python
|
2012-04-21 20:40:48 +00:00
|
|
|
DESTDIR ?=
|
2012-08-02 20:35:41 +00:00
|
|
|
SIGN ?=
|
2013-04-23 18:17:09 +00:00
|
|
|
PREFIX ?= /usr/local
|
2015-08-26 10:38:48 +00:00
|
|
|
FLAKY_TESTS ?= run
|
2015-08-26 10:41:16 +00:00
|
|
|
TEST_CI_ARGS ?=
|
2015-08-13 16:14:34 +00:00
|
|
|
STAGINGSERVER ?= node-www
|
2015-06-10 07:05:26 +00:00
|
|
|
|
|
|
|
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
|
2009-12-06 06:35:26 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
# Determine EXEEXT
|
2014-10-29 14:43:09 +00:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-30 22:59:05 +00:00
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
NODE ?= ./node$(EXEEXT)
|
|
|
|
NODE_EXE = node$(EXEEXT)
|
|
|
|
NODE_G_EXE = node_g$(EXEEXT)
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2015-08-13 15:30:01 +00:00
|
|
|
# Flags for packaging.
|
|
|
|
BUILD_DOWNLOAD_FLAGS ?= --download=all
|
|
|
|
BUILD_INTL_FLAGS ?= --with-intl=small-icu
|
|
|
|
BUILD_RELEASE_FLAGS ?= $(BUILD_DOWNLOAD_FLAGS) $(BUILD_INTL_FLAGS)
|
|
|
|
|
2012-07-24 23:19:08 +00:00
|
|
|
# Default to verbose builds.
|
|
|
|
# To do quiet/pretty builds, run `make V=` to set V to an empty string,
|
|
|
|
# or set the V environment variable to an empty string.
|
|
|
|
V ?= 1
|
|
|
|
|
2012-01-26 22:45:16 +00:00
|
|
|
# BUILDTYPE=Debug builds both release and debug builds. If you want to compile
|
|
|
|
# just the debug build, run `make -C out BUILDTYPE=Debug` instead.
|
2011-12-17 11:23:17 +00:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2014-08-30 22:59:05 +00:00
|
|
|
all: out/Makefile $(NODE_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
else
|
2014-08-30 22:59:05 +00:00
|
|
|
all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
endif
|
|
|
|
|
2011-12-18 23:10:01 +00:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
2014-08-30 22:59:05 +00:00
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
$(NODE_EXE): config.gypi out/Makefile
|
2012-07-24 23:19:08 +00:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release V=$(V)
|
2014-08-30 22:59:05 +00:00
|
|
|
ln -fs out/Release/$(NODE_EXE) $@
|
2011-12-17 11:23:17 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
$(NODE_G_EXE): config.gypi out/Makefile
|
2012-07-24 23:19:08 +00:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
|
2014-08-30 22:59:05 +00:00
|
|
|
ln -fs out/Debug/$(NODE_EXE) $@
|
2010-10-24 14:15:05 +00:00
|
|
|
|
2013-07-22 22:53:43 +00:00
|
|
|
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
|
2013-11-10 23:15:34 +00:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 14:03:01 +00:00
|
|
|
|
|
|
|
config.gypi: configure
|
2013-08-10 11:00:51 +00:00
|
|
|
if [ -f $@ ]; then
|
|
|
|
$(error Stale $@, please re-run ./configure)
|
|
|
|
else
|
|
|
|
$(error No $@, please run ./configure first)
|
|
|
|
fi
|
2010-10-24 14:15:05 +00:00
|
|
|
|
2011-12-14 13:00:10 +00:00
|
|
|
install: all
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 13:00:10 +00:00
|
|
|
|
|
|
|
uninstall:
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 12:19:19 +00:00
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
clean:
|
2015-06-10 07:05:26 +00:00
|
|
|
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE)
|
2014-12-06 17:46:53 +00:00
|
|
|
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' | xargs rm -rf; fi
|
2012-05-03 17:16:25 +00:00
|
|
|
-rm -rf node_modules
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
distclean:
|
2011-11-18 01:18:29 +00:00
|
|
|
-rm -rf out
|
build: i18n: add icu config options
Make "--with-intl=none" the default and add "intl-none" option to
vcbuild.bat.
If icu data is missing print a warning unless either --download=all or
--download=icu is set. If set then automatically download, verify (MD5)
and unpack the ICU data if not already available.
There's a "list" of URLs being used, but right now only the first is
picked up. The logic works something like this:
* If there is no directory deps/icu,
* If no zip file (currently icu4c-54_1-src.zip),
* Download zip file (icu-project.org -> sf.net)
* Verify the MD5 sum of the zipfile
* If bad, print error and exit
* Unpack the zipfile into deps/icu
* If deps/icu now exists, use it, else fail with help text
Add the configuration option "--with-icu-source=..."
Usage:
* --with-icu-source=/path/to/my/other/icu
* --with-icu-source=/path/to/icu54.zip
* --with-icu-source=/path/to/icu54.tgz
* --with-icu-source=http://example.com/icu54.tar.bz2
Add the configuration option "--with-icu-locals=...". Allows choosing
which locales are used in the "small-icu" case.
Example:
configure --with-intl=small-icu --with-icu-locales=tlh,grc,nl
(Also note that as of this writing, neither Klingon nor Ancient Greek
are in upstream CLDR data. Serving suggestion only.)
Don't use hard coded ../../out paths on windows. This was suggested by
@misterdjules as it causes test failures. With this fix, "out" is no
longer created on windows and the following can run properly:
python tools/test.py simple
Reduce space by about 1MB with ICU 54 (over without this patch). Also
trims a few other source files, but only conditional on the exact ICU
version used. This is to future-proof - a file that is unneeded now may
be needed in future ICUs.
Also:
* Update distclean to remove icu related files
* Refactor some code into tools/configure.d/nodedownload.py
* Update docs
* Add test
PR-URL: https://github.com/joyent/node/pull/8719
Fixes: https://github.com/joyent/node/issues/7676#issuecomment-64704230
[trev.norris@gmail.com small change to test's whitespace and logic]
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
2014-11-13 01:13:14 +00:00
|
|
|
-rm -f config.gypi icu_config.gypi
|
2012-02-17 20:41:39 +00:00
|
|
|
-rm -f config.mk
|
2015-06-10 07:05:26 +00:00
|
|
|
-rm -rf $(NODE_EXE) $(NODE_G_EXE)
|
2012-05-03 17:16:25 +00:00
|
|
|
-rm -rf node_modules
|
build: i18n: add icu config options
Make "--with-intl=none" the default and add "intl-none" option to
vcbuild.bat.
If icu data is missing print a warning unless either --download=all or
--download=icu is set. If set then automatically download, verify (MD5)
and unpack the ICU data if not already available.
There's a "list" of URLs being used, but right now only the first is
picked up. The logic works something like this:
* If there is no directory deps/icu,
* If no zip file (currently icu4c-54_1-src.zip),
* Download zip file (icu-project.org -> sf.net)
* Verify the MD5 sum of the zipfile
* If bad, print error and exit
* Unpack the zipfile into deps/icu
* If deps/icu now exists, use it, else fail with help text
Add the configuration option "--with-icu-source=..."
Usage:
* --with-icu-source=/path/to/my/other/icu
* --with-icu-source=/path/to/icu54.zip
* --with-icu-source=/path/to/icu54.tgz
* --with-icu-source=http://example.com/icu54.tar.bz2
Add the configuration option "--with-icu-locals=...". Allows choosing
which locales are used in the "small-icu" case.
Example:
configure --with-intl=small-icu --with-icu-locales=tlh,grc,nl
(Also note that as of this writing, neither Klingon nor Ancient Greek
are in upstream CLDR data. Serving suggestion only.)
Don't use hard coded ../../out paths on windows. This was suggested by
@misterdjules as it causes test failures. With this fix, "out" is no
longer created on windows and the following can run properly:
python tools/test.py simple
Reduce space by about 1MB with ICU 54 (over without this patch). Also
trims a few other source files, but only conditional on the exact ICU
version used. This is to future-proof - a file that is unneeded now may
be needed in future ICUs.
Also:
* Update distclean to remove icu related files
* Refactor some code into tools/configure.d/nodedownload.py
* Update docs
* Add test
PR-URL: https://github.com/joyent/node/pull/8719
Fixes: https://github.com/joyent/node/issues/7676#issuecomment-64704230
[trev.norris@gmail.com small change to test's whitespace and logic]
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
2014-11-13 01:13:14 +00:00
|
|
|
-rm -rf deps/icu
|
|
|
|
-rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
|
2015-01-13 03:24:32 +00:00
|
|
|
-rm -f $(BINARYTAR).* $(TARBALL).*
|
2010-10-04 09:11:27 +00:00
|
|
|
|
2015-03-19 22:15:54 +00:00
|
|
|
check: test
|
|
|
|
|
2015-03-19 01:01:45 +00:00
|
|
|
cctest: all
|
|
|
|
@out/$(BUILDTYPE)/$@
|
|
|
|
|
|
|
|
test: | cctest # Depends on 'all'.
|
2014-12-17 13:34:21 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release message parallel sequential -J
|
2012-08-05 21:40:20 +00:00
|
|
|
$(MAKE) jslint
|
2013-07-31 10:54:06 +00:00
|
|
|
$(MAKE) cpplint
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2014-12-17 13:30:04 +00:00
|
|
|
test-parallel: all
|
|
|
|
$(PYTHON) tools/test.py --mode=release parallel -J
|
|
|
|
|
2010-12-22 18:24:34 +00:00
|
|
|
test-valgrind: all
|
2014-12-17 13:30:04 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2015-01-02 16:00:27 +00:00
|
|
|
test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2012-06-13 22:55:29 +00:00
|
|
|
--directory="$(shell pwd)/test/gc/node_modules/weak" \
|
|
|
|
--nodedir="$(shell pwd)"
|
2012-05-03 17:16:25 +00:00
|
|
|
|
2015-08-18 19:29:59 +00:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
|
|
|
test/addons/.docbuildstamp: doc/api/addons.markdown
|
|
|
|
$(RM) -r test/addons/doc-*/
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) tools/doc/addon-verify.js
|
2015-08-18 19:29:59 +00:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
ADDONS_BINDING_GYPS := \
|
|
|
|
$(filter-out test/addons/doc-*/binding.gyp, \
|
|
|
|
$(wildcard test/addons/*/binding.gyp))
|
|
|
|
|
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
|
|
|
test/addons/.buildstamp: $(ADDONS_BINDING_GYPS) | test/addons/.docbuildstamp
|
|
|
|
# Cannot use $(wildcard test/addons/*/) here, it's evaluated before
|
|
|
|
# embedded addons have been generated from the documentation.
|
|
|
|
for dirname in test/addons/*/; do \
|
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
|
|
|
--directory="$$PWD/$$dirname" \
|
|
|
|
--nodedir="$$PWD"; \
|
|
|
|
done
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
# .buildstamp and .docbuildstamp need $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp and .docbuildstamp are out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
|
|
|
build-addons: $(NODE_EXE) test/addons/.buildstamp
|
2014-01-18 22:49:18 +00:00
|
|
|
|
2013-10-23 11:42:53 +00:00
|
|
|
test-gc: all test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 17:16:25 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release gc
|
|
|
|
|
2015-08-18 19:29:59 +00:00
|
|
|
test-build: | all build-addons
|
2014-01-18 22:49:18 +00:00
|
|
|
|
|
|
|
test-all: test-build test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 17:16:25 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-all-valgrind: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2015-08-18 19:29:59 +00:00
|
|
|
test-ci: | build-addons
|
2015-08-26 10:38:48 +00:00
|
|
|
$(PYTHON) tools/test.py -p tap --logfile test.tap --mode=release --flaky-tests=$(FLAKY_TESTS) \
|
2015-08-26 10:41:16 +00:00
|
|
|
$(TEST_CI_ARGS) addons message parallel sequential
|
2015-01-12 22:40:51 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-release: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-02 21:18:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-debug: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-message: test-build
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py message
|
2010-06-19 01:14:06 +00:00
|
|
|
|
2015-03-19 01:01:45 +00:00
|
|
|
test-simple: | cctest # Depends on 'all'.
|
2014-12-17 13:30:04 +00:00
|
|
|
$(PYTHON) tools/test.py parallel sequential
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2015-02-26 23:00:07 +00:00
|
|
|
test-pummel: all
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py pummel
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2010-11-01 23:03:32 +00:00
|
|
|
test-internet: all
|
2012-01-08 20:17:28 +00:00
|
|
|
$(PYTHON) tools/test.py internet
|
2010-02-25 06:36:17 +00:00
|
|
|
|
2014-01-14 01:24:14 +00:00
|
|
|
test-debugger: all
|
|
|
|
$(PYTHON) tools/test.py debugger
|
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
test-npm: $(NODE_EXE)
|
2015-06-15 16:10:44 +00:00
|
|
|
NODE=$(NODE) tools/test-npm.sh
|
2011-12-17 02:04:39 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js
|
2011-07-08 17:40:35 +00:00
|
|
|
|
2014-01-18 22:49:18 +00:00
|
|
|
test-addons: test-build
|
|
|
|
$(PYTHON) tools/test.py --mode=release addons
|
|
|
|
|
2014-07-23 01:03:10 +00:00
|
|
|
test-timers:
|
|
|
|
$(MAKE) --directory=tools faketime
|
|
|
|
$(PYTHON) tools/test.py --mode=release timers
|
|
|
|
|
|
|
|
test-timers-clean:
|
|
|
|
$(MAKE) --directory=tools clean
|
|
|
|
|
2010-11-14 23:50:14 +00:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.markdown)
|
2012-02-27 18:59:35 +00:00
|
|
|
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
|
2015-01-18 06:41:37 +00:00
|
|
|
$(addprefix out/,$(apidoc_sources:.markdown=.json))
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2014-02-13 23:52:01 +00:00
|
|
|
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
|
2010-10-28 22:10:20 +00:00
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2015-01-14 16:29:52 +00:00
|
|
|
doc: $(apidoc_dirs) $(apiassets) $(apidocs) tools/doc/ $(NODE_EXE)
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2010-11-14 23:50:14 +00:00
|
|
|
$(apidoc_dirs):
|
|
|
|
mkdir -p $@
|
2010-10-28 22:10:20 +00:00
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
|
2010-11-14 23:50:14 +00:00
|
|
|
cp $< $@
|
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
out/doc/%: doc/%
|
2012-02-13 22:47:50 +00:00
|
|
|
cp -r $< $@
|
2010-11-16 04:23:12 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
out/doc/api/%.json: doc/api/%.markdown $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) tools/doc/generate.js --format=json $< > $@
|
2012-02-27 18:59:35 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
out/doc/api/%.html: doc/api/%.markdown $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
docopen: out/doc/api/all.html
|
|
|
|
-google-chrome out/doc/api/all.html
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2009-12-30 01:45:15 +00:00
|
|
|
docclean:
|
2011-08-23 21:08:53 +00:00
|
|
|
-rm -rf out/doc
|
2009-12-30 01:45:15 +00:00
|
|
|
|
2015-07-08 14:11:24 +00:00
|
|
|
run-ci:
|
|
|
|
$(PYTHON) ./configure $(CONFIG_FLAGS)
|
|
|
|
$(MAKE)
|
|
|
|
$(MAKE) test-ci
|
|
|
|
|
2013-06-04 00:05:56 +00:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-06-10 07:05:26 +00:00
|
|
|
|
|
|
|
# For nightly builds, you must set DISTTYPE to "nightly", "next-nightly" or
|
|
|
|
# "custom". For the nightly and next-nightly case, you need to set DATESTRING
|
|
|
|
# and COMMIT in order to properly name the build.
|
|
|
|
# For the rc case you need to set CUSTOMTAG to an appropriate CUSTOMTAG number
|
|
|
|
|
|
|
|
ifndef DISTTYPE
|
|
|
|
DISTTYPE=release
|
|
|
|
endif
|
|
|
|
ifeq ($(DISTTYPE),release)
|
2015-01-13 23:53:26 +00:00
|
|
|
FULLVERSION=$(VERSION)
|
2015-06-10 07:05:26 +00:00
|
|
|
else # ifeq ($(DISTTYPE),release)
|
|
|
|
ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef CUSTOMTAG
|
|
|
|
$(error CUSTOMTAG is not set for DISTTYPE=custom)
|
|
|
|
endif # ifndef CUSTOMTAG
|
|
|
|
TAG=$(CUSTOMTAG)
|
|
|
|
else # ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef DATESTRING
|
|
|
|
$(error DATESTRING is not set for nightly)
|
|
|
|
endif # ifndef DATESTRING
|
|
|
|
ifndef COMMIT
|
|
|
|
$(error COMMIT is not set for nightly)
|
|
|
|
endif # ifndef COMMIT
|
|
|
|
ifneq ($(DISTTYPE),nightly)
|
|
|
|
ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
$(error DISTTYPE is not release, custom, nightly or next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),nightly)
|
|
|
|
TAG=$(DISTTYPE)$(DATESTRING)$(COMMIT)
|
|
|
|
endif # ifeq ($(DISTTYPE),custom)
|
|
|
|
FULLVERSION=$(VERSION)-$(TAG)
|
|
|
|
endif # ifeq ($(DISTTYPE),release)
|
|
|
|
|
|
|
|
DISTTYPEDIR ?= $(DISTTYPE)
|
2015-04-14 12:22:23 +00:00
|
|
|
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
|
2012-08-04 19:07:17 +00:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-13 23:53:26 +00:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2012-08-09 23:30:41 +00:00
|
|
|
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
|
|
|
|
DESTCPU ?= x64
|
2012-08-04 19:39:54 +00:00
|
|
|
else
|
2015-06-10 07:05:26 +00:00
|
|
|
DESTCPU ?= x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2012-08-09 23:30:41 +00:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 05:03:36 +00:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
2015-07-07 18:15:03 +00:00
|
|
|
ifeq ($(DESTCPU),ppc64)
|
|
|
|
ARCH=ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),ppc)
|
|
|
|
ARCH=ppc
|
|
|
|
else
|
2012-08-09 23:30:41 +00:00
|
|
|
ARCH=x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2012-11-27 05:03:36 +00:00
|
|
|
endif
|
2015-07-07 18:15:03 +00:00
|
|
|
endif
|
|
|
|
endif
|
2015-06-10 07:05:26 +00:00
|
|
|
|
|
|
|
# enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel
|
|
|
|
ifeq ($(ARCH),ia32)
|
|
|
|
override ARCH=x86
|
2013-02-26 06:51:00 +00:00
|
|
|
endif
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(DESTCPU),ia32)
|
|
|
|
override DESTCPU=x86
|
|
|
|
endif
|
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
TARNAME=node-$(FULLVERSION)
|
2015-01-13 01:51:34 +00:00
|
|
|
TARBALL=$(TARNAME).tar
|
2012-08-04 19:07:17 +00:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2015-01-13 01:51:34 +00:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
2015-06-10 07:05:26 +00:00
|
|
|
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
2015-01-13 01:51:34 +00:00
|
|
|
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
|
2015-04-15 00:49:29 +00:00
|
|
|
XZ_COMPRESSION ?= 9
|
2015-06-10 07:05:26 +00:00
|
|
|
PKG=$(TARNAME).pkg
|
2015-03-11 18:45:57 +00:00
|
|
|
PACKAGEMAKER ?= /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
|
2011-11-21 03:22:30 +00:00
|
|
|
PKGDIR=out/dist-osx
|
|
|
|
|
2012-08-04 22:34:04 +00:00
|
|
|
release-only:
|
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00:00
|
|
|
echo "The git repository is not clean." >&2 ; \
|
|
|
|
echo "Please commit changes before building release tarball." >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
git status --porcelain | egrep -v '^\?\?' >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2015-06-10 07:05:26 +00:00
|
|
|
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 0; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-09 23:30:41 +00:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "Did you remember to update src/node_version.h?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
$(PKG): release-only
|
2012-02-22 22:03:22 +00:00
|
|
|
rm -rf $(PKGDIR)
|
|
|
|
rm -rf out/deps out/Release
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--dest-cpu=x64 \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2013-05-02 20:54:37 +00:00
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
|
2015-06-10 07:05:26 +00:00
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
|
|
|
|
cat tools/osx-pkg.pmdoc/index.xml.tmpl \
|
2015-08-13 16:14:34 +00:00
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
2015-06-10 07:05:26 +00:00
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
> tools/osx-pkg.pmdoc/index.xml
|
2015-03-11 18:45:57 +00:00
|
|
|
$(PACKAGEMAKER) \
|
2015-09-04 05:41:21 +00:00
|
|
|
--id "org.nodejs.pkg" \
|
2011-11-21 03:22:30 +00:00
|
|
|
--doc tools/osx-pkg.pmdoc \
|
|
|
|
--out $(PKG)
|
2015-06-10 07:05:26 +00:00
|
|
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
|
|
|
|
|
|
|
pkg: $(PKG)
|
|
|
|
|
|
|
|
pkg-upload: pkg
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 node-$(FULLVERSION).pkg
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p node-$(FULLVERSION).pkg $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg.done"
|
2011-11-11 22:31:15 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
$(TARBALL): release-only $(NODE_EXE) doc
|
2015-02-26 00:08:16 +00:00
|
|
|
git checkout-index -a -f --prefix=$(TARNAME)/
|
2012-06-06 22:01:31 +00:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-08-13 16:14:34 +00:00
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2012-06-06 22:01:31 +00:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2015-02-26 00:08:16 +00:00
|
|
|
rm -rf $(TARNAME)/deps/v8/{test,samples,tools/profviz} # too big
|
2012-02-13 22:47:50 +00:00
|
|
|
rm -rf $(TARNAME)/doc/images # too big
|
2015-02-26 00:08:16 +00:00
|
|
|
rm -rf $(TARNAME)/deps/uv/{docs,samples,test}
|
|
|
|
rm -rf $(TARNAME)/deps/openssl/{doc,demos,test}
|
2015-01-13 01:51:34 +00:00
|
|
|
rm -rf $(TARNAME)/deps/zlib/contrib # too big, unused
|
2012-06-11 15:18:30 +00:00
|
|
|
find $(TARNAME)/ -type l | xargs rm # annoying on windows
|
2010-05-13 22:54:50 +00:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
|
|
|
rm $(TARNAME).tar
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2012-08-04 19:12:22 +00:00
|
|
|
tar: $(TARBALL)
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
tar-upload: tar
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 node-$(FULLVERSION).tar.gz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p node-$(FULLVERSION).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 node-$(FULLVERSION).tar.xz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p node-$(FULLVERSION).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
doc-upload: tar
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod -R ug=rw-x+X,o=r+X out/doc/
|
|
|
|
scp -pr out/doc/ $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2015-06-14 10:23:43 +00:00
|
|
|
$(TARBALL)-headers: config.gypi release-only
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2015-06-30 06:57:47 +00:00
|
|
|
HEADERS_ONLY=1 $(PYTHON) tools/install.py install '$(TARNAME)' '/'
|
2015-06-14 10:23:43 +00:00
|
|
|
find $(TARNAME)/ -type l | xargs rm # annoying on windows
|
|
|
|
tar -cf $(TARNAME)-headers.tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
|
|
|
gzip -c -f -9 $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.xz
|
|
|
|
endif
|
|
|
|
rm $(TARNAME)-headers.tar
|
|
|
|
|
|
|
|
tar-headers: $(TARBALL)-headers
|
|
|
|
|
|
|
|
tar-headers-upload: tar-headers
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.gz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p $(TARNAME)-headers.tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz.done"
|
2015-06-14 10:23:43 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.xz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p $(TARNAME)-headers.tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz.done"
|
2015-06-14 10:23:43 +00:00
|
|
|
endif
|
|
|
|
|
2012-08-04 22:34:04 +00:00
|
|
|
$(BINARYTAR): release-only
|
2012-08-04 19:07:17 +00:00
|
|
|
rm -rf $(BINARYNAME)
|
|
|
|
rm -rf out/deps out/Release
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2012-08-04 19:07:17 +00:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 02:16:16 +00:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2012-08-04 19:07:17 +00:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
|
|
|
rm -rf $(BINARYNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
|
|
|
rm $(BINARYNAME).tar
|
2012-08-04 19:07:17 +00:00
|
|
|
|
2012-08-04 19:12:37 +00:00
|
|
|
binary: $(BINARYTAR)
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
binary-upload: binary
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
endif
|
2013-06-04 00:05:56 +00:00
|
|
|
|
2015-02-26 23:00:07 +00:00
|
|
|
haswrk=$(shell which wrk > /dev/null 2>&1; echo $$?)
|
|
|
|
wrk:
|
|
|
|
ifneq ($(haswrk), 0)
|
2015-02-27 02:37:46 +00:00
|
|
|
@echo "please install wrk before proceeding. More information can be found in benchmark/README.md." >&2
|
2015-02-26 23:00:07 +00:00
|
|
|
@exit 1
|
|
|
|
endif
|
2013-02-13 20:19:08 +00:00
|
|
|
|
2013-02-12 07:22:12 +00:00
|
|
|
bench-net: all
|
|
|
|
@$(NODE) benchmark/common.js net
|
|
|
|
|
2013-02-20 00:57:59 +00:00
|
|
|
bench-crypto: all
|
|
|
|
@$(NODE) benchmark/common.js crypto
|
|
|
|
|
2013-02-12 07:22:12 +00:00
|
|
|
bench-tls: all
|
|
|
|
@$(NODE) benchmark/common.js tls
|
|
|
|
|
2013-02-13 20:20:36 +00:00
|
|
|
bench-http: wrk all
|
2013-02-12 07:22:12 +00:00
|
|
|
@$(NODE) benchmark/common.js http
|
|
|
|
|
|
|
|
bench-fs: all
|
|
|
|
@$(NODE) benchmark/common.js fs
|
|
|
|
|
|
|
|
bench-misc: all
|
|
|
|
@$(MAKE) -C benchmark/misc/function_call/
|
|
|
|
@$(NODE) benchmark/common.js misc
|
|
|
|
|
|
|
|
bench-array: all
|
|
|
|
@$(NODE) benchmark/common.js arrays
|
|
|
|
|
|
|
|
bench-buffer: all
|
|
|
|
@$(NODE) benchmark/common.js buffers
|
|
|
|
|
2015-01-23 23:56:04 +00:00
|
|
|
bench-url: all
|
|
|
|
@$(NODE) benchmark/common.js url
|
|
|
|
|
|
|
|
bench-events: all
|
|
|
|
@$(NODE) benchmark/common.js events
|
|
|
|
|
|
|
|
bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events
|
2013-02-13 22:18:27 +00:00
|
|
|
|
|
|
|
bench: bench-net bench-http bench-fs bench-tls
|
2013-02-12 07:22:12 +00:00
|
|
|
|
|
|
|
bench-http-simple:
|
2015-01-18 06:41:37 +00:00
|
|
|
benchmark/http_simple_bench.sh
|
2010-10-13 23:20:24 +00:00
|
|
|
|
2010-10-15 17:05:22 +00:00
|
|
|
bench-idle:
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) benchmark/idle_server.js &
|
2010-10-15 17:05:22 +00:00
|
|
|
sleep 1
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) benchmark/idle_clients.js &
|
2010-10-15 17:05:22 +00:00
|
|
|
|
2010-12-02 01:01:19 +00:00
|
|
|
jslint:
|
2015-06-12 05:12:20 +00:00
|
|
|
$(NODE) tools/eslint/bin/eslint.js src lib test --rulesdir tools/eslint-rules --reset --quiet
|
2010-10-15 17:05:22 +00:00
|
|
|
|
2013-07-31 10:54:06 +00:00
|
|
|
CPPLINT_EXCLUDE ?=
|
2015-01-22 12:35:16 +00:00
|
|
|
CPPLINT_EXCLUDE += src/node_lttng.cc
|
2013-08-01 10:33:33 +00:00
|
|
|
CPPLINT_EXCLUDE += src/node_root_certs.h
|
2015-01-22 12:35:16 +00:00
|
|
|
CPPLINT_EXCLUDE += src/node_lttng_tp.h
|
2013-08-01 10:33:33 +00:00
|
|
|
CPPLINT_EXCLUDE += src/node_win32_perfctr_provider.cc
|
2013-07-31 10:54:06 +00:00
|
|
|
CPPLINT_EXCLUDE += src/queue.h
|
2013-08-01 10:33:33 +00:00
|
|
|
CPPLINT_EXCLUDE += src/tree.h
|
2013-07-31 10:54:06 +00:00
|
|
|
CPPLINT_EXCLUDE += src/v8abbr.h
|
2015-08-18 18:29:10 +00:00
|
|
|
CPPLINT_EXCLUDE += $(wildcard test/addons/doc-*/*.cc test/addons/doc-*/*.h)
|
|
|
|
|
|
|
|
CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard \
|
|
|
|
deps/debugger-agent/include/* \
|
|
|
|
deps/debugger-agent/src/* \
|
|
|
|
src/*.c \
|
|
|
|
src/*.cc \
|
|
|
|
src/*.h \
|
|
|
|
test/addons/*/*.cc \
|
|
|
|
test/addons/*/*.h \
|
|
|
|
tools/icu/*.cc \
|
|
|
|
tools/icu/*.h \
|
|
|
|
))
|
2013-07-31 10:54:06 +00:00
|
|
|
|
2010-12-02 01:01:19 +00:00
|
|
|
cpplint:
|
2013-07-31 10:54:06 +00:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_FILES)
|
2010-12-02 01:01:19 +00:00
|
|
|
|
|
|
|
lint: jslint cpplint
|
2010-12-02 00:35:46 +00:00
|
|
|
|
2015-03-19 01:01:45 +00:00
|
|
|
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
|
|
|
|
check uninstall install install-includes install-bin all staticlib \
|
|
|
|
dynamiclib test test-all test-addons build-addons website-upload pkg \
|
|
|
|
blog blogclean tar binary release-only bench-http-simple bench-idle \
|
|
|
|
bench-all bench bench-misc bench-array bench-buffer bench-net \
|
2015-07-08 14:11:24 +00:00
|
|
|
bench-http bench-fs bench-tls cctest run-ci
|