2012-01-17 23:02:15 +01:00
|
|
|
-include config.mk
|
|
|
|
|
|
2011-11-14 19:02:44 -08:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-08 21:17:28 +01:00
|
|
|
PYTHON ?= python
|
2012-04-21 22:40:48 +02:00
|
|
|
DESTDIR ?=
|
2009-12-06 07:35:26 +01:00
|
|
|
|
2012-01-26 23:45:16 +01: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 03:23:17 -08:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
|
|
|
|
all: out/Makefile node
|
|
|
|
|
else
|
2012-01-26 23:45:16 +01:00
|
|
|
all: out/Makefile node node_g
|
2011-12-17 03:23:17 -08:00
|
|
|
endif
|
|
|
|
|
|
2011-12-18 15:10:01 -08:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
|
# to check for changes.
|
|
|
|
|
.PHONY: node node_g
|
2011-12-17 03:23:17 -08:00
|
|
|
|
2012-01-16 23:28:25 -08:00
|
|
|
node: config.gypi
|
2011-12-17 03:23:17 -08:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release
|
2011-12-18 15:10:01 -08:00
|
|
|
ln -fs out/Release/node node
|
2011-12-17 03:23:17 -08:00
|
|
|
|
2012-01-16 23:28:25 -08:00
|
|
|
node_g: config.gypi
|
2011-12-18 15:10:01 -08:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug
|
|
|
|
|
ln -fs out/Debug/node node_g
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2012-01-16 23:28:25 -08:00
|
|
|
config.gypi: configure
|
|
|
|
|
./configure
|
|
|
|
|
|
2011-12-17 03:23:17 -08:00
|
|
|
out/Debug/node:
|
|
|
|
|
$(MAKE) -C out BUILDTYPE=Debug
|
2010-10-24 16:15:05 +02:00
|
|
|
|
2011-12-23 14:24:50 -08:00
|
|
|
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/common.gypi deps/v8/tools/gyp/v8.gyp node.gyp config.gypi
|
2011-11-29 16:31:31 +02:00
|
|
|
tools/gyp_node -f make
|
2010-10-24 16:15:05 +02:00
|
|
|
|
2011-12-14 19:00:10 +06:00
|
|
|
install: all
|
2012-04-21 22:40:48 +02:00
|
|
|
out/Release/node tools/installer.js install $(DESTDIR)
|
2011-12-14 19:00:10 +06:00
|
|
|
|
|
|
|
|
uninstall:
|
2012-03-13 21:04:24 -07:00
|
|
|
out/Release/node tools/installer.js uninstall
|
2011-11-23 13:19:19 +01:00
|
|
|
|
2011-11-14 19:02:44 -08:00
|
|
|
clean:
|
2012-03-29 16:01:27 -07:00
|
|
|
-rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node blog.html email.md
|
2012-02-08 09:59:31 -08:00
|
|
|
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
|
2009-10-03 22:42:03 +02:00
|
|
|
|
2011-11-14 19:02:44 -08:00
|
|
|
distclean:
|
2011-11-17 17:18:29 -08:00
|
|
|
-rm -rf out
|
2012-02-17 12:41:39 -08:00
|
|
|
-rm -f config.gypi
|
|
|
|
|
-rm -f config.mk
|
2012-03-29 16:01:27 -07:00
|
|
|
-rm -rf node node_g blog.html email.md
|
2010-10-04 02:11:27 -07:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=release simple message
|
2012-02-21 12:02:57 -08: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
|
2009-10-03 22:42:03 +02:00
|
|
|
|
2011-08-02 21:28:31 +02:00
|
|
|
test-http1: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=release --use-http1 simple message
|
2011-08-01 03:21:28 +02:00
|
|
|
|
2010-12-22 10:24:34 -08:00
|
|
|
test-valgrind: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind simple message
|
2010-12-22 10:24:34 -08:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-all: all
|
2009-10-03 21:46:59 +02:00
|
|
|
python tools/test.py --mode=debug,release
|
2011-12-21 12:17:23 -08:00
|
|
|
$(MAKE) test-npm
|
2009-10-03 21:46:59 +02:00
|
|
|
|
2011-08-02 21:28:31 +02:00
|
|
|
test-all-http1: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --use-http1
|
2011-08-01 03:21:28 +02:00
|
|
|
|
2010-12-22 10:24:34 -08:00
|
|
|
test-all-valgrind: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 10:24:34 -08:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-release: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-02 13:18:59 -08:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-debug: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 21:46:59 +02:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-message: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py message
|
2010-06-18 18:14:06 -07:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-simple: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py simple
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-pummel: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py pummel
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2010-11-01 16:03:32 -07:00
|
|
|
test-internet: all
|
2012-01-08 21:17:28 +01:00
|
|
|
$(PYTHON) tools/test.py internet
|
2010-02-25 01:36:17 -05:00
|
|
|
|
2011-12-21 12:17:23 -08:00
|
|
|
test-npm: node
|
2011-12-16 18:04:39 -08:00
|
|
|
./node deps/npm/test/run.js
|
|
|
|
|
|
2011-12-21 12:17:23 -08:00
|
|
|
test-npm-publish: node
|
2011-12-16 18:04:39 -08:00
|
|
|
npm_package_config_publishtest=true ./node deps/npm/test/run.js
|
2011-07-08 10:40:35 -07:00
|
|
|
|
2010-11-15 10:50:14 +11:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.markdown)
|
2012-02-27 10:59:35 -08:00
|
|
|
apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
|
|
|
|
|
$(addprefix out/,$(apidoc_sources:.markdown=.json))
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2012-02-13 14:47:50 -08:00
|
|
|
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets out/doc/about out/doc/community out/doc/logos out/doc/images
|
2010-10-28 15:10:20 -07:00
|
|
|
|
2011-08-23 14:08:53 -07:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-13 14:57:35 -08:00
|
|
|
|
2012-02-13 14:47:50 -08:00
|
|
|
doc_images = $(addprefix out/,$(wildcard doc/images/* doc/*.jpg doc/*.png))
|
|
|
|
|
|
2010-11-15 20:23:12 -08:00
|
|
|
website_files = \
|
2011-08-23 14:08:53 -07:00
|
|
|
out/doc/index.html \
|
|
|
|
|
out/doc/v0.4_announcement.html \
|
|
|
|
|
out/doc/cla.html \
|
|
|
|
|
out/doc/sh_main.js \
|
|
|
|
|
out/doc/sh_javascript.min.js \
|
|
|
|
|
out/doc/sh_vim-dark.css \
|
2012-01-23 02:07:59 -08:00
|
|
|
out/doc/sh.css \
|
2011-12-14 18:18:47 -08:00
|
|
|
out/doc/favicon.ico \
|
|
|
|
|
out/doc/pipe.css \
|
|
|
|
|
out/doc/about/index.html \
|
|
|
|
|
out/doc/community/index.html \
|
2012-01-23 02:07:59 -08:00
|
|
|
out/doc/logos/index.html \
|
2012-04-10 18:29:25 -07:00
|
|
|
out/doc/changelog.html \
|
2012-02-13 14:47:50 -08:00
|
|
|
$(doc_images)
|
2011-08-23 14:08:53 -07:00
|
|
|
|
2012-03-15 08:22:31 -07:00
|
|
|
doc: program $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/
|
2010-11-13 14:57:35 -08:00
|
|
|
|
2010-11-15 10:50:14 +11:00
|
|
|
$(apidoc_dirs):
|
|
|
|
|
mkdir -p $@
|
2010-10-28 15:10:20 -07:00
|
|
|
|
2011-08-23 14:08:53 -07:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
|
2010-11-15 10:50:14 +11:00
|
|
|
cp $< $@
|
|
|
|
|
|
2012-04-10 18:29:25 -07:00
|
|
|
out/doc/changelog.html: ChangeLog doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh
|
|
|
|
|
bash tools/build-changelog.sh
|
|
|
|
|
|
2012-03-16 08:13:41 -07:00
|
|
|
out/doc/%.html: doc/%.html
|
|
|
|
|
cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@
|
|
|
|
|
|
2011-08-23 14:08:53 -07:00
|
|
|
out/doc/%: doc/%
|
2012-02-13 14:47:50 -08:00
|
|
|
cp -r $< $@
|
2010-11-15 20:23:12 -08:00
|
|
|
|
2012-02-27 10:59:35 -08:00
|
|
|
out/doc/api/%.json: doc/api/%.markdown
|
|
|
|
|
out/Release/node tools/doc/generate.js --format=json $< > $@
|
|
|
|
|
|
|
|
|
|
out/doc/api/%.html: doc/api/%.markdown
|
|
|
|
|
out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2012-03-29 16:01:27 -07:00
|
|
|
email.md: ChangeLog tools/email-footer.md
|
|
|
|
|
bash tools/changelog-head.sh > $@
|
|
|
|
|
cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@
|
|
|
|
|
|
|
|
|
|
blog.html: email.md
|
2012-04-10 18:22:42 -07:00
|
|
|
cat $< | ./node tools/doc/node_modules/.bin/marked > $@
|
2012-03-29 16:01:27 -07:00
|
|
|
|
2009-10-03 21:46:59 +02:00
|
|
|
website-upload: doc
|
2011-12-15 12:50:48 -08:00
|
|
|
rsync -r out/doc/ node@nodejs.org:~/web/nodejs.org/
|
2012-03-24 01:39:39 -07:00
|
|
|
ssh node@nodejs.org '\
|
|
|
|
|
rm -f ~/web/nodejs.org/dist/latest &&\
|
|
|
|
|
ln -s $(VERSION) ~/web/nodejs.org/dist/latest &&\
|
|
|
|
|
rm -f ~/web/nodejs.org/docs/latest &&\
|
|
|
|
|
ln -s $(VERSION) ~/web/nodejs.org/docs/latest &&\
|
|
|
|
|
rm -f ~/web/nodejs.org/dist/node-latest.tar.gz &&\
|
|
|
|
|
ln -s $(VERSION)/node-$(VERSION).tar.gz ~/web/nodejs.org/dist/node-latest.tar.gz'
|
2010-11-15 10:50:14 +11:00
|
|
|
|
2011-08-23 14:08:53 -07:00
|
|
|
docopen: out/doc/api/all.html
|
|
|
|
|
-google-chrome out/doc/api/all.html
|
2009-10-03 21:46:59 +02:00
|
|
|
|
2009-12-30 02:45:15 +01:00
|
|
|
docclean:
|
2011-08-23 14:08:53 -07:00
|
|
|
-rm -rf out/doc
|
2009-12-30 02:45:15 +01:00
|
|
|
|
2012-01-08 21:17:28 +01:00
|
|
|
VERSION=v$(shell $(PYTHON) tools/getnodeversion.py)
|
2009-10-03 22:42:03 +02:00
|
|
|
TARNAME=node-$(VERSION)
|
2012-01-16 18:40:12 -08:00
|
|
|
TARBALL=$(TARNAME).tar.gz
|
|
|
|
|
PKG=out/$(TARNAME).pkg
|
|
|
|
|
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
|
2009-10-03 22:42:03 +02:00
|
|
|
|
2012-01-16 18:40:12 -08:00
|
|
|
dist: doc $(TARBALL) $(PKG)
|
2011-11-11 14:31:15 -08:00
|
|
|
|
2011-11-20 19:22:30 -08:00
|
|
|
PKGDIR=out/dist-osx
|
|
|
|
|
|
|
|
|
|
pkg: $(PKG)
|
|
|
|
|
|
2011-11-11 14:31:15 -08:00
|
|
|
$(PKG):
|
2012-02-22 14:03:22 -08:00
|
|
|
rm -rf $(PKGDIR)
|
|
|
|
|
rm -rf out/deps out/Release
|
|
|
|
|
./configure --prefix=$(PKGDIR)/32/usr/local --without-snapshot --dest-cpu=ia32
|
2012-01-16 18:40:12 -08:00
|
|
|
$(MAKE) install
|
2012-02-22 14:03:22 -08:00
|
|
|
rm -rf out/deps out/Release
|
|
|
|
|
./configure --prefix=$(PKGDIR)/usr/local --without-snapshot --dest-cpu=x64
|
|
|
|
|
$(MAKE) install
|
|
|
|
|
lipo $(PKGDIR)/32/usr/local/bin/node \
|
|
|
|
|
$(PKGDIR)/usr/local/bin/node \
|
|
|
|
|
-output $(PKGDIR)/usr/local/bin/node-universal \
|
|
|
|
|
-create
|
|
|
|
|
mv $(PKGDIR)/usr/local/bin/node-universal $(PKGDIR)/usr/local/bin/node
|
|
|
|
|
rm -rf $(PKGDIR)/32
|
2011-11-20 19:22:30 -08:00
|
|
|
$(packagemaker) \
|
|
|
|
|
--id "org.nodejs.NodeJS-$(VERSION)" \
|
|
|
|
|
--doc tools/osx-pkg.pmdoc \
|
|
|
|
|
--out $(PKG)
|
2011-11-11 14:31:15 -08:00
|
|
|
|
2012-01-16 18:40:12 -08:00
|
|
|
$(TARBALL): node out/doc
|
2012-02-07 15:41:21 -08:00
|
|
|
@if [ $(shell ./node --version) = "$(VERSION)" ]; then \
|
|
|
|
|
exit 0; \
|
|
|
|
|
else \
|
|
|
|
|
echo "" >&2 ; \
|
|
|
|
|
echo "$(shell ./node --version) doesn't match $(VERSION)." >&2 ; \
|
|
|
|
|
echo "Did you remember to update src/node_version.cc?" >&2 ; \
|
|
|
|
|
echo "" >&2 ; \
|
|
|
|
|
exit 1 ; \
|
|
|
|
|
fi
|
2010-12-02 17:48:00 +11:00
|
|
|
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
|
2009-10-03 22:42:03 +02:00
|
|
|
mkdir -p $(TARNAME)/doc
|
|
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2011-08-23 14:08:53 -07:00
|
|
|
cp -r out/doc/api $(TARNAME)/doc/api
|
2010-05-13 15:54:50 -07:00
|
|
|
rm -rf $(TARNAME)/deps/v8/test # too big
|
2012-02-13 14:47:50 -08:00
|
|
|
rm -rf $(TARNAME)/doc/images # too big
|
2010-05-13 15:54:50 -07:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
|
|
|
|
rm -rf $(TARNAME)
|
2009-10-03 22:42:03 +02:00
|
|
|
gzip -f -9 $(TARNAME).tar
|
2009-10-03 21:46:59 +02:00
|
|
|
|
2012-01-16 18:52:36 -08:00
|
|
|
dist-upload: $(TARBALL) $(PKG)
|
|
|
|
|
ssh node@nodejs.org mkdir -p web/nodejs.org/dist/$(VERSION)
|
|
|
|
|
scp $(TARBALL) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL)
|
|
|
|
|
scp $(PKG) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARNAME).pkg
|
|
|
|
|
|
2010-10-13 16:20:24 -07:00
|
|
|
bench:
|
|
|
|
|
benchmark/http_simple_bench.sh
|
|
|
|
|
|
2010-10-15 12:05:22 -05:00
|
|
|
bench-idle:
|
|
|
|
|
./node benchmark/idle_server.js &
|
|
|
|
|
sleep 1
|
|
|
|
|
./node benchmark/idle_clients.js &
|
|
|
|
|
|
2010-12-01 17:01:19 -08:00
|
|
|
jslint:
|
2012-04-18 12:41:08 -07: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 12:05:22 -05:00
|
|
|
|
2010-12-01 17:01:19 -08:00
|
|
|
cpplint:
|
2012-01-08 21:17:28 +01:00
|
|
|
@$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)
|
2010-12-01 17:01:19 -08:00
|
|
|
|
|
|
|
|
lint: jslint cpplint
|
2010-12-01 16:35:46 -08:00
|
|
|
|
2012-01-16 18:40:12 -08:00
|
|
|
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all program staticlib dynamiclib test test-all website-upload pkg
|