2012-01-09 00:17:28 +04:00
|
|
|
PYTHON ?= python
|
|
|
|
WAF = $(PYTHON) tools/waf-light
|
2009-12-06 09:35:26 +03:00
|
|
|
|
2011-08-26 21:31:27 +04:00
|
|
|
web_root = node@nodejs.org:~/web/nodejs.org/
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2011-05-20 06:51:30 +04:00
|
|
|
#
|
|
|
|
# Because we recursively call make from waf we need to make sure that we are
|
|
|
|
# using the correct make. Not all makes are GNU Make, but this likely only
|
|
|
|
# works with gnu make. To deal with this we remember how the user invoked us
|
|
|
|
# via a make builtin variable and use that in all subsequent operations
|
|
|
|
#
|
|
|
|
export NODE_MAKE := $(MAKE)
|
|
|
|
|
2010-10-24 18:15:05 +04:00
|
|
|
all: program
|
2011-08-24 01:08:53 +04:00
|
|
|
@-[ -f out/Release/node ] && ls -lh out/Release/node
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
all-progress:
|
|
|
|
@$(WAF) -p build
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2010-10-24 18:15:05 +04:00
|
|
|
program:
|
|
|
|
@$(WAF) --product-type=program build
|
|
|
|
|
|
|
|
staticlib:
|
|
|
|
@$(WAF) --product-type=cstaticlib build
|
|
|
|
|
|
|
|
dynamiclib:
|
|
|
|
@$(WAF) --product-type=cshlib build
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
install:
|
|
|
|
@$(WAF) install
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
uninstall:
|
|
|
|
@$(WAF) uninstall
|
2010-10-04 13:11:27 +04:00
|
|
|
|
2012-05-05 05:29:56 +04:00
|
|
|
test: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release simple message
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2011-08-02 23:28:31 +04:00
|
|
|
test-http1: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release --use-http1 simple message
|
2011-08-01 05:21:28 +04:00
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-valgrind: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind simple message
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2012-05-03 21:16:25 +04:00
|
|
|
node_modules/weak:
|
|
|
|
@if [ ! -f node ]; then make all; fi
|
|
|
|
@if [ ! -d node_modules ]; then mkdir -p node_modules; fi
|
2012-05-04 23:51:37 +04:00
|
|
|
./node deps/npm/bin/npm-cli.js install weak \
|
|
|
|
--prefix="$(shell pwd)" --unsafe-perm # go ahead and run as root.
|
2012-05-03 21:16:25 +04:00
|
|
|
|
|
|
|
test-gc: all node_modules/weak
|
|
|
|
$(PYTHON) tools/test.py --mode=release gc
|
|
|
|
|
|
|
|
test-all: all node_modules/weak
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release
|
2011-12-17 06:04:39 +04:00
|
|
|
make test-npm
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2011-08-02 23:28:31 +04:00
|
|
|
test-all-http1: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --use-http1
|
2011-08-01 05:21:28 +04:00
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-all-valgrind: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-release: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-03 00:18:59 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-debug: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-message: all
|
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
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py simple
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-pummel: all
|
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
|
|
|
|
2011-12-17 06:04:39 +04:00
|
|
|
test-npm: all
|
|
|
|
./node deps/npm/test/run.js
|
|
|
|
|
|
|
|
test-npm-publish: all
|
|
|
|
npm_package_config_publishtest=true ./node deps/npm/test/run.js
|
2011-07-08 21:40:35 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
out/Release/node: all
|
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
|
|
|
|
2012-02-14 02:47:50 +04: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-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
|
|
|
|
2012-02-14 02:47:50 +04:00
|
|
|
doc_images = $(addprefix out/,$(wildcard doc/images/* doc/*.jpg doc/*.png))
|
|
|
|
|
2010-11-16 07:23:12 +03:00
|
|
|
website_files = \
|
2011-08-24 01:08:53 +04: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 14:07:59 +04:00
|
|
|
out/doc/sh.css \
|
2011-12-15 06:18:47 +04:00
|
|
|
out/doc/favicon.ico \
|
|
|
|
out/doc/pipe.css \
|
|
|
|
out/doc/about/index.html \
|
|
|
|
out/doc/community/index.html \
|
2012-01-23 14:07:59 +04:00
|
|
|
out/doc/logos/index.html \
|
2012-04-11 05:29:25 +04:00
|
|
|
out/doc/changelog.html \
|
2012-02-14 02:47:50 +04:00
|
|
|
$(doc_images)
|
2011-08-24 01:08:53 +04:00
|
|
|
|
2012-03-15 19:22:31 +04:00
|
|
|
doc: program $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/
|
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 $< $@
|
|
|
|
|
2012-04-11 05:29:25 +04: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 19:13:41 +04:00
|
|
|
out/doc/%.html: doc/%.html
|
|
|
|
cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@
|
|
|
|
|
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
|
|
|
|
2012-02-27 22:59:35 +04: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 02:50:14 +03:00
|
|
|
|
2012-03-30 03:01:27 +04: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-11 05:22:42 +04:00
|
|
|
cat $< | ./node tools/doc/node_modules/.bin/marked > $@
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2009-10-03 23:46:59 +04:00
|
|
|
website-upload: doc
|
2011-12-16 00:50:48 +04:00
|
|
|
rsync -r out/doc/ node@nodejs.org:~/web/nodejs.org/
|
2012-03-24 12:39:39 +04: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 02:50:14 +03: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
|
|
|
|
2010-03-07 23:13:16 +03:00
|
|
|
clean:
|
2010-12-14 09:13:51 +03:00
|
|
|
$(WAF) clean
|
|
|
|
-find tools -name "*.pyc" | xargs rm -f
|
2012-03-30 03:01:27 +04:00
|
|
|
-rm -rf blog.html email.md
|
2012-05-03 21:16:25 +04:00
|
|
|
-rm -rf node_modules
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2010-04-20 02:48:12 +04:00
|
|
|
distclean: docclean
|
2010-12-14 09:13:51 +03:00
|
|
|
-find tools -name "*.pyc" | xargs rm -f
|
2011-11-11 06:16:51 +04:00
|
|
|
-rm -rf dist-osx
|
2011-08-24 01:08:53 +04:00
|
|
|
-rm -rf out/ node node_g
|
2012-03-30 03:01:27 +04:00
|
|
|
-rm -rf blog.html email.md
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
check:
|
|
|
|
@tools/waf-light check
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2012-01-09 00:17:28 +04:00
|
|
|
VERSION=v$(shell $(PYTHON) tools/getnodeversion.py)
|
2009-10-04 00:42:03 +04:00
|
|
|
TARNAME=node-$(VERSION)
|
2011-11-12 02:31:15 +04:00
|
|
|
TARBALL=$(TARNAME).tar.gz
|
2011-11-21 07:22:30 +04:00
|
|
|
PKG=out/$(TARNAME).pkg
|
|
|
|
|
|
|
|
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
#dist: doc/node.1 doc/api
|
2011-11-12 02:31:15 +04:00
|
|
|
dist: $(TARBALL) $(PKG)
|
|
|
|
|
2011-11-21 07:22:30 +04:00
|
|
|
PKGDIR=out/dist-osx
|
|
|
|
|
|
|
|
pkg: $(PKG)
|
|
|
|
|
2011-11-12 02:31:15 +04:00
|
|
|
$(PKG):
|
2011-11-21 07:22:30 +04:00
|
|
|
-rm -rf $(PKGDIR)
|
2012-02-22 23:48:43 +04:00
|
|
|
# Need to remove deps between architecture changes.
|
|
|
|
rm -rf out/*/deps
|
2012-02-17 22:08:40 +04:00
|
|
|
$(WAF) configure --prefix=/usr/local --without-snapshot --dest-cpu=ia32
|
2012-02-22 23:48:43 +04:00
|
|
|
CFLAGS=-m32 DESTDIR=$(PKGDIR)/32 $(WAF) install
|
|
|
|
rm -rf out/*/deps
|
|
|
|
$(WAF) configure --prefix=/usr/local --without-snapshot --dest-cpu=x64
|
|
|
|
CFLAGS=-m64 DESTDIR=$(PKGDIR) $(WAF) 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-21 07:22:30 +04:00
|
|
|
$(packagemaker) \
|
|
|
|
--id "org.nodejs.NodeJS-$(VERSION)" \
|
|
|
|
--doc tools/osx-pkg.pmdoc \
|
|
|
|
--out $(PKG)
|
2011-11-12 02:31:15 +04:00
|
|
|
|
|
|
|
$(TARBALL): out/doc
|
2010-12-02 09:48:00 +03:00
|
|
|
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
|
2009-10-04 00:42:03 +04:00
|
|
|
mkdir -p $(TARNAME)/doc
|
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2011-08-24 01:08:53 +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
|
2010-05-14 02:54:50 +04:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
2009-10-04 00:42:03 +04:00
|
|
|
gzip -f -9 $(TARNAME).tar
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2011-11-12 02:31:15 +04: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-14 03:20:24 +04:00
|
|
|
bench:
|
|
|
|
benchmark/http_simple_bench.sh
|
|
|
|
|
2010-10-15 21:05:22 +04:00
|
|
|
bench-idle:
|
|
|
|
./node benchmark/idle_server.js &
|
|
|
|
sleep 1
|
|
|
|
./node benchmark/idle_clients.js &
|
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
jslint:
|
2012-01-11 02:29:11 +04:00
|
|
|
PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/ --exclude_files lib/punycode.js
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
cpplint:
|
2012-01-09 00:17:28 +04:00
|
|
|
@$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)
|
2010-12-02 04:01:19 +03:00
|
|
|
|
|
|
|
lint: jslint cpplint
|
2010-12-02 03:35:46 +03:00
|
|
|
|
2011-11-12 02:31:15 +04:00
|
|
|
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean dist-upload check uninstall install all program staticlib dynamiclib test test-all website-upload
|