2012-01-18 02:02:15 +04:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-09 00:17:28 +04:00
|
|
|
PYTHON ?= python
|
2012-09-04 18:03:01 +04:00
|
|
|
NINJA ?= ninja
|
2012-04-22 00:40:48 +04:00
|
|
|
DESTDIR ?=
|
2012-08-03 00:35:41 +04:00
|
|
|
SIGN ?=
|
2013-04-23 22:17:09 +04:00
|
|
|
PREFIX ?= /usr/local
|
2009-12-06 09:35:26 +03:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
# Determine EXEEXT
|
2014-10-29 17:43:09 +03:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-31 02:59:05 +04:00
|
|
|
|
2015-01-08 16:00:43 +03:00
|
|
|
NODE ?= ./iojs$(EXEEXT)
|
|
|
|
NODE_EXE = iojs$(EXEEXT)
|
|
|
|
NODE_G_EXE = iojs_g$(EXEEXT)
|
2013-02-12 11:22:12 +04:00
|
|
|
|
2012-07-25 03:19:08 +04: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
|
|
|
|
|
2015-01-13 05:52:44 +03:00
|
|
|
USE_NINJA ?= 0
|
2013-08-10 15:17:26 +04:00
|
|
|
ifeq ($(USE_NINJA),1)
|
|
|
|
ifneq ($(V),)
|
|
|
|
NINJA := $(NINJA) -v
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-01-27 02:45:16 +04: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 15:23:17 +04:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2014-08-31 02:59:05 +04:00
|
|
|
all: out/Makefile $(NODE_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
else
|
2014-08-31 02:59:05 +04:00
|
|
|
all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
endif
|
|
|
|
|
2011-12-19 03:10:01 +04:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
2014-08-31 02:59:05 +04:00
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2012-09-04 18:03:01 +04:00
|
|
|
ifeq ($(USE_NINJA),1)
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_EXE): config.gypi
|
2012-09-04 18:03:01 +04:00
|
|
|
$(NINJA) -C out/Release/
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Release/$(NODE_EXE) $@
|
2012-09-04 18:03:01 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_G_EXE): config.gypi
|
2012-09-04 18:03:01 +04:00
|
|
|
$(NINJA) -C out/Debug/
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Debug/$(NODE_EXE) $@
|
2012-09-04 18:03:01 +04:00
|
|
|
else
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_EXE): config.gypi out/Makefile
|
2012-07-25 03:19:08 +04:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release V=$(V)
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Release/$(NODE_EXE) $@
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_G_EXE): config.gypi out/Makefile
|
2012-07-25 03:19:08 +04:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Debug/$(NODE_EXE) $@
|
2012-09-04 18:03:01 +04:00
|
|
|
endif
|
2010-10-24 18:15:05 +04:00
|
|
|
|
2013-07-23 02:53:43 +04: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
|
2012-09-04 18:03:01 +04:00
|
|
|
ifeq ($(USE_NINJA),1)
|
|
|
|
touch out/Makefile
|
2013-11-11 03:15:34 +04:00
|
|
|
$(PYTHON) tools/gyp_node.py -f ninja
|
2012-09-04 18:03:01 +04:00
|
|
|
else
|
2013-11-11 03:15:34 +04:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 18:03:01 +04:00
|
|
|
endif
|
|
|
|
|
|
|
|
config.gypi: configure
|
2013-08-10 15:00:51 +04:00
|
|
|
if [ -f $@ ]; then
|
|
|
|
$(error Stale $@, please re-run ./configure)
|
|
|
|
else
|
|
|
|
$(error No $@, please run ./configure first)
|
|
|
|
fi
|
2010-10-24 18:15:05 +04:00
|
|
|
|
2011-12-14 17:00:10 +04:00
|
|
|
install: all
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 17:00:10 +04:00
|
|
|
|
|
|
|
uninstall:
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 16:19:19 +04:00
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
clean:
|
2014-08-31 02:59:05 +04:00
|
|
|
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) blog.html email.md
|
2014-12-06 20:46:53 +03:00
|
|
|
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' | xargs rm -rf; fi
|
2012-05-03 21:16:25 +04:00
|
|
|
-rm -rf node_modules
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
distclean:
|
2011-11-18 05:18:29 +04: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 04:13:14 +03:00
|
|
|
-rm -f config.gypi icu_config.gypi
|
2012-02-18 00:41:39 +04:00
|
|
|
-rm -f config.mk
|
2014-08-31 02:59:05 +04:00
|
|
|
-rm -rf $(NODE_EXE) $(NODE_G_EXE) blog.html email.md
|
2012-05-03 21:16:25 +04: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 04:13:14 +03:00
|
|
|
-rm -rf deps/icu
|
|
|
|
-rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
|
2010-10-04 13:11:27 +04:00
|
|
|
|
2012-05-05 05:29:56 +04:00
|
|
|
test: all
|
2014-12-17 16:34:21 +03:00
|
|
|
$(PYTHON) tools/test.py --mode=release message parallel sequential -J
|
2012-08-06 01:40:20 +04:00
|
|
|
$(MAKE) jslint
|
2013-07-31 14:54:06 +04:00
|
|
|
$(MAKE) cpplint
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2014-12-17 16:30:04 +03:00
|
|
|
test-parallel: all
|
|
|
|
$(PYTHON) tools/test.py --mode=release parallel -J
|
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-valgrind: all
|
2014-12-17 16:30:04 +03:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2015-01-02 19:00:27 +03:00
|
|
|
test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
|
2014-08-31 02:59:05 +04:00
|
|
|
./$(NODE_EXE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2012-06-14 02:55:29 +04:00
|
|
|
--directory="$(shell pwd)/test/gc/node_modules/weak" \
|
|
|
|
--nodedir="$(shell pwd)"
|
2012-05-03 21:16:25 +04:00
|
|
|
|
2015-01-02 19:00:27 +03:00
|
|
|
build-addons: $(NODE_EXE)
|
2014-01-19 02:49:18 +04:00
|
|
|
rm -rf test/addons/doc-*/
|
2015-01-02 19:00:27 +03:00
|
|
|
./$(NODE_EXE) tools/doc/addon-verify.js
|
2014-01-19 02:49:18 +04:00
|
|
|
$(foreach dir, \
|
|
|
|
$(sort $(dir $(wildcard test/addons/*/*.gyp))), \
|
2015-01-02 19:00:27 +03:00
|
|
|
./$(NODE_EXE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2014-01-19 02:49:18 +04:00
|
|
|
--directory="$(shell pwd)/$(dir)" \
|
|
|
|
--nodedir="$(shell pwd)" && ) echo "build done"
|
|
|
|
|
2013-10-23 15:42:53 +04:00
|
|
|
test-gc: all test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 21:16:25 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release gc
|
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-build: all build-addons
|
|
|
|
|
|
|
|
test-all: test-build test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 21:16:25 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-all-valgrind: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2015-01-13 01:40:51 +03:00
|
|
|
test-ci: test-build
|
|
|
|
$(PYTHON) tools/test.py -J parallel sequential message addons
|
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-release: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-03 00:18:59 +03:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-debug: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-message: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py message
|
2010-06-19 05:14:06 +04:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-simple: all
|
2014-12-17 16:30:04 +03:00
|
|
|
$(PYTHON) tools/test.py parallel sequential
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2014-02-25 07:40:47 +04:00
|
|
|
test-pummel: all wrk
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py pummel
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-internet: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py internet
|
2010-02-25 09:36:17 +03:00
|
|
|
|
2014-01-14 05:24:14 +04:00
|
|
|
test-debugger: all
|
|
|
|
$(PYTHON) tools/test.py debugger
|
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
test-npm: $(NODE_EXE)
|
2014-09-24 05:59:35 +04:00
|
|
|
rm -rf npm-cache npm-tmp npm-prefix
|
|
|
|
mkdir npm-cache npm-tmp npm-prefix
|
|
|
|
cd deps/npm ; npm_config_cache="$(shell pwd)/npm-cache" \
|
|
|
|
npm_config_prefix="$(shell pwd)/npm-prefix" \
|
|
|
|
npm_config_tmp="$(shell pwd)/npm-tmp" \
|
2015-01-13 04:21:49 +03:00
|
|
|
../../$(NODE_EXE) cli.js install --ignore-scripts
|
2014-09-24 05:59:35 +04:00
|
|
|
cd deps/npm ; npm_config_cache="$(shell pwd)/npm-cache" \
|
|
|
|
npm_config_prefix="$(shell pwd)/npm-prefix" \
|
|
|
|
npm_config_tmp="$(shell pwd)/npm-tmp" \
|
2014-11-22 19:34:31 +03:00
|
|
|
../../$(NODE_EXE) cli.js run-script test-all && \
|
|
|
|
../../$(NODE_EXE) cli.js prune --prod && \
|
2014-09-24 05:59:35 +04:00
|
|
|
cd ../.. && \
|
|
|
|
rm -rf npm-cache npm-tmp npm-prefix
|
2011-12-17 06:04:39 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
|
|
|
npm_package_config_publishtest=true ./$(NODE_EXE) deps/npm/test/run.js
|
2011-07-08 21:40:35 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-addons: test-build
|
|
|
|
$(PYTHON) tools/test.py --mode=release addons
|
|
|
|
|
2014-07-23 05:03:10 +04:00
|
|
|
test-timers:
|
|
|
|
$(MAKE) --directory=tools faketime
|
|
|
|
$(PYTHON) tools/test.py --mode=release timers
|
|
|
|
|
|
|
|
test-timers-clean:
|
|
|
|
$(MAKE) --directory=tools clean
|
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.markdown)
|
2012-02-27 22:59:35 +04:00
|
|
|
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
|
|
|
|
$(addprefix out/,$(apidoc_sources:.markdown=.json))
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2014-02-14 03:52:01 +04:00
|
|
|
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2015-01-14 19:29:52 +03:00
|
|
|
doc: $(apidoc_dirs) $(apiassets) $(apidocs) tools/doc/ $(NODE_EXE)
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
$(apidoc_dirs):
|
|
|
|
mkdir -p $@
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
|
2010-11-15 02:50:14 +03:00
|
|
|
cp $< $@
|
|
|
|
|
2015-01-14 05:16:16 +03:00
|
|
|
out/doc/changelog.html: CHANGELOG.md doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh $(NODE_EXE)
|
2012-04-11 05:29:25 +04:00
|
|
|
bash tools/build-changelog.sh
|
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
out/doc/%: doc/%
|
2012-02-14 02:47:50 +04:00
|
|
|
cp -r $< $@
|
2010-11-16 07:23:12 +03:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
out/doc/api/%.json: doc/api/%.markdown $(NODE_EXE)
|
|
|
|
out/Release/$(NODE_EXE) tools/doc/generate.js --format=json $< > $@
|
2012-02-27 22:59:35 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
out/doc/api/%.html: doc/api/%.markdown $(NODE_EXE)
|
|
|
|
out/Release/$(NODE_EXE) tools/doc/generate.js --format=html --template=doc/template.html $< > $@
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2015-01-14 05:16:16 +03:00
|
|
|
email.md: CHANGELOG.md tools/email-footer.md
|
2012-05-15 03:14:12 +04:00
|
|
|
bash tools/changelog-head.sh | sed 's|^\* #|* \\#|g' > $@
|
2012-03-30 03:01:27 +04:00
|
|
|
cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@
|
|
|
|
|
|
|
|
blog.html: email.md
|
2014-08-31 02:59:05 +04:00
|
|
|
cat $< | ./$(NODE_EXE) tools/doc/node_modules/.bin/marked > $@
|
2012-03-30 03:01:27 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
docopen: out/doc/api/all.html
|
|
|
|
-google-chrome out/doc/api/all.html
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2009-12-30 04:45:15 +03:00
|
|
|
docclean:
|
2011-08-24 01:08:53 +04:00
|
|
|
-rm -rf out/doc
|
2009-12-30 04:45:15 +03:00
|
|
|
|
2013-06-04 04:05:56 +04:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-01-14 02:53:26 +03:00
|
|
|
FULLVERSION=$(VERSION)
|
2012-08-10 03:30:41 +04:00
|
|
|
RELEASE=$(shell $(PYTHON) tools/getnodeisrelease.py)
|
2012-08-04 23:07:17 +04:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-14 02:53:26 +03:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2012-08-10 03:30:41 +04:00
|
|
|
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
|
|
|
|
DESTCPU ?= x64
|
2012-08-04 23:39:54 +04:00
|
|
|
else
|
2012-08-10 03:30:41 +04:00
|
|
|
DESTCPU ?= ia32
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2012-08-10 03:30:41 +04:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 09:03:36 +04:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
2012-08-10 03:30:41 +04:00
|
|
|
ARCH=x86
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2012-11-27 09:03:36 +04:00
|
|
|
endif
|
2013-03-05 23:05:50 +04:00
|
|
|
ifdef NIGHTLY
|
|
|
|
TAG = nightly-$(NIGHTLY)
|
2015-01-14 02:53:26 +03:00
|
|
|
FULLVERSION=$(VERSION)-$(TAG)
|
2013-02-26 10:51:00 +04:00
|
|
|
endif
|
2015-01-14 02:53:26 +03:00
|
|
|
TARNAME=iojs-$(FULLVERSION)
|
2015-01-13 04:51:34 +03:00
|
|
|
TARBALL=$(TARNAME).tar
|
2012-08-04 23:07:17 +04:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2015-01-13 04:51:34 +03:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
|
|
|
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
|
2012-01-17 06:40:12 +04:00
|
|
|
PKG=out/$(TARNAME).pkg
|
|
|
|
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2015-01-08 16:00:43 +03:00
|
|
|
PKGSRC=iojs-$(DESTCPU)-$(RAWVER).tgz
|
2013-06-04 04:05:56 +04:00
|
|
|
ifdef NIGHTLY
|
2015-01-08 16:00:43 +03:00
|
|
|
PKGSRC=iojs-$(DESTCPU)-$(RAWVER)-$(TAG).tgz
|
2013-06-04 04:05:56 +04:00
|
|
|
endif
|
|
|
|
|
2012-01-17 06:40:12 +04:00
|
|
|
dist: doc $(TARBALL) $(PKG)
|
2011-11-12 02:31:15 +04:00
|
|
|
|
2011-11-21 07:22:30 +04:00
|
|
|
PKGDIR=out/dist-osx
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
release-only:
|
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
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
|
2013-03-05 23:05:50 +04:00
|
|
|
@if [ "$(NIGHTLY)" != "" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-05 02:34:04 +04:00
|
|
|
exit 0; \
|
|
|
|
else \
|
|
|
|
echo "" >&2 ; \
|
2012-08-10 03:30:41 +04:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2012-08-05 02:34:04 +04:00
|
|
|
echo "Did you remember to update src/node_version.cc?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
2011-11-21 07:22:30 +04:00
|
|
|
pkg: $(PKG)
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
$(PKG): release-only
|
2012-02-23 02:03:22 +04:00
|
|
|
rm -rf $(PKGDIR)
|
|
|
|
rm -rf out/deps out/Release
|
2013-05-03 00:54:37 +04:00
|
|
|
$(PYTHON) ./configure --without-snapshot --dest-cpu=ia32 --tag=$(TAG)
|
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)/32
|
2012-02-23 02:03:22 +04:00
|
|
|
rm -rf out/deps out/Release
|
2013-05-03 00:54:37 +04:00
|
|
|
$(PYTHON) ./configure --without-snapshot --dest-cpu=x64 --tag=$(TAG)
|
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
|
2013-07-10 00:48:24 +04:00
|
|
|
SIGN="$(APP_SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
|
2015-01-08 16:00:43 +03:00
|
|
|
lipo $(PKGDIR)/32/usr/local/bin/iojs \
|
|
|
|
$(PKGDIR)/usr/local/bin/iojs \
|
|
|
|
-output $(PKGDIR)/usr/local/bin/iojs-universal \
|
2012-02-23 02:03:22 +04:00
|
|
|
-create
|
2015-01-08 16:00:43 +03:00
|
|
|
mv $(PKGDIR)/usr/local/bin/iojs-universal $(PKGDIR)/usr/local/bin/iojs
|
2012-02-23 02:03:22 +04:00
|
|
|
rm -rf $(PKGDIR)/32
|
2015-01-14 02:53:26 +03:00
|
|
|
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
|
2011-11-21 07:22:30 +04:00
|
|
|
$(packagemaker) \
|
2012-08-03 00:35:41 +04:00
|
|
|
--id "org.nodejs.Node" \
|
2011-11-21 07:22:30 +04:00
|
|
|
--doc tools/osx-pkg.pmdoc \
|
|
|
|
--out $(PKG)
|
2013-07-10 00:48:24 +04:00
|
|
|
SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
2011-11-12 02:31:15 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(TARBALL): release-only $(NODE_EXE) doc
|
2010-12-02 09:48:00 +03:00
|
|
|
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
|
2012-06-07 02:01:31 +04:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-01-02 19:07:43 +03:00
|
|
|
cp doc/iojs.1 $(TARNAME)/doc/iojs.1
|
2012-06-07 02:01:31 +04:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2010-05-14 02:54:50 +04:00
|
|
|
rm -rf $(TARNAME)/deps/v8/test # too big
|
2012-02-14 02:47:50 +04:00
|
|
|
rm -rf $(TARNAME)/doc/images # too big
|
2015-01-13 04:51:34 +03:00
|
|
|
rm -rf $(TARNAME)/deps/zlib/contrib # too big, unused
|
2012-06-11 19:18:30 +04:00
|
|
|
find $(TARNAME)/ -type l | xargs rm # annoying on windows
|
2010-05-14 02:54:50 +04:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
|
|
|
xz -c -f -9 $(TARNAME).tar > $(TARNAME).tar.xz
|
|
|
|
endif
|
|
|
|
rm $(TARNAME).tar
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2012-08-04 23:12:22 +04:00
|
|
|
tar: $(TARBALL)
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
$(BINARYTAR): release-only
|
2012-08-04 23:07:17 +04:00
|
|
|
rm -rf $(BINARYNAME)
|
|
|
|
rm -rf out/deps out/Release
|
2013-02-26 10:51:00 +04:00
|
|
|
$(PYTHON) ./configure --prefix=/ --without-snapshot --dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS)
|
2012-08-04 23:07:17 +04:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 05:16:16 +03:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2012-08-04 23:07:17 +04:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
|
|
|
rm -rf $(BINARYNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
|
|
|
xz -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
|
|
|
endif
|
|
|
|
rm $(BINARYNAME).tar
|
2012-08-04 23:07:17 +04:00
|
|
|
|
2012-08-04 23:12:37 +04:00
|
|
|
binary: $(BINARYTAR)
|
|
|
|
|
2013-06-04 04:05:56 +04:00
|
|
|
$(PKGSRC): release-only
|
|
|
|
rm -rf dist out
|
|
|
|
$(PYTHON) configure --prefix=/ --without-snapshot \
|
|
|
|
--dest-cpu=$(DESTCPU) --tag=$(TAG) $(CONFIG_FLAGS)
|
|
|
|
$(MAKE) install DESTDIR=dist
|
|
|
|
(cd dist; find * -type f | sort) > packlist
|
|
|
|
pkg_info -X pkg_install | \
|
|
|
|
egrep '^(MACHINE_ARCH|OPSYS|OS_VERSION|PKGTOOLS_VERSION)' > build-info
|
|
|
|
pkg_create -B build-info -c tools/pkgsrc/comment -d tools/pkgsrc/description \
|
|
|
|
-f packlist -I /opt/local -p dist -U $(PKGSRC)
|
|
|
|
|
|
|
|
pkgsrc: $(PKGSRC)
|
|
|
|
|
2013-02-14 00:20:36 +04:00
|
|
|
wrkclean:
|
|
|
|
$(MAKE) -C tools/wrk/ clean
|
|
|
|
rm tools/wrk/wrk
|
|
|
|
|
2013-02-14 00:19:08 +04:00
|
|
|
wrk: tools/wrk/wrk
|
|
|
|
tools/wrk/wrk:
|
|
|
|
$(MAKE) -C tools/wrk/
|
|
|
|
|
2013-02-12 11:22:12 +04:00
|
|
|
bench-net: all
|
|
|
|
@$(NODE) benchmark/common.js net
|
|
|
|
|
2013-02-20 04:57:59 +04:00
|
|
|
bench-crypto: all
|
|
|
|
@$(NODE) benchmark/common.js crypto
|
|
|
|
|
2013-02-12 11:22:12 +04:00
|
|
|
bench-tls: all
|
|
|
|
@$(NODE) benchmark/common.js tls
|
|
|
|
|
2013-02-14 00:20:36 +04:00
|
|
|
bench-http: wrk all
|
2013-02-12 11:22:12 +04: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
|
|
|
|
|
2013-02-14 02:18:27 +04:00
|
|
|
bench-all: bench bench-misc bench-array bench-buffer
|
|
|
|
|
|
|
|
bench: bench-net bench-http bench-fs bench-tls
|
2013-02-12 11:22:12 +04:00
|
|
|
|
|
|
|
bench-http-simple:
|
2010-10-14 03:20:24 +04:00
|
|
|
benchmark/http_simple_bench.sh
|
|
|
|
|
2010-10-15 21:05:22 +04:00
|
|
|
bench-idle:
|
2014-08-31 02:59:05 +04:00
|
|
|
./$(NODE_EXE) benchmark/idle_server.js &
|
2010-10-15 21:05:22 +04:00
|
|
|
sleep 1
|
2014-08-31 02:59:05 +04:00
|
|
|
./$(NODE_EXE) benchmark/idle_clients.js &
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2012-07-25 04:06:50 +04:00
|
|
|
jslintfix:
|
|
|
|
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/fixjsstyle.py --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
|
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
jslint:
|
2012-04-18 23:41:08 +04:00
|
|
|
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2013-07-31 14:54:06 +04:00
|
|
|
CPPLINT_EXCLUDE ?=
|
2013-08-01 14:33:33 +04:00
|
|
|
CPPLINT_EXCLUDE += src/node_dtrace.cc
|
|
|
|
CPPLINT_EXCLUDE += src/node_dtrace.cc
|
|
|
|
CPPLINT_EXCLUDE += src/node_root_certs.h
|
|
|
|
CPPLINT_EXCLUDE += src/node_win32_perfctr_provider.cc
|
2013-07-31 14:54:06 +04:00
|
|
|
CPPLINT_EXCLUDE += src/queue.h
|
2013-08-01 14:33:33 +04:00
|
|
|
CPPLINT_EXCLUDE += src/tree.h
|
2013-07-31 14:54:06 +04:00
|
|
|
CPPLINT_EXCLUDE += src/v8abbr.h
|
|
|
|
|
2014-10-04 18:44:39 +04:00
|
|
|
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/*))
|
2013-07-31 14:54:06 +04:00
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
cpplint:
|
2013-07-31 14:54:06 +04:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_FILES)
|
2010-12-02 04:01:19 +03:00
|
|
|
|
|
|
|
lint: jslint cpplint
|
2010-12-02 03:35:46 +03:00
|
|
|
|
2014-01-19 02:49:18 +04: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 bench-http bench-fs bench-tls
|