2010-11-02 02:03:32 +03:00
|
|
|
WAF=python tools/waf-light
|
2009-12-06 09:35:26 +03:00
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
web_root = ryan@nodejs.org:~/web/nodejs.org/
|
|
|
|
|
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
|
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
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test: all
|
2010-06-19 05:14:06 +04:00
|
|
|
python tools/test.py --mode=release simple message
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-valgrind: all
|
|
|
|
python tools/test.py --mode=release --valgrind simple message
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-all: all
|
2009-10-03 23:46:59 +04:00
|
|
|
python tools/test.py --mode=debug,release
|
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-all-valgrind: all
|
|
|
|
python tools/test.py --mode=debug,release --valgrind
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-release: all
|
2010-03-03 00:18:59 +03:00
|
|
|
python tools/test.py --mode=release
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-debug: all
|
2009-10-03 23:46:59 +04:00
|
|
|
python tools/test.py --mode=debug
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-message: all
|
2010-06-19 05:14:06 +04:00
|
|
|
python tools/test.py message
|
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-simple: all
|
2010-02-25 09:36:17 +03: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
|
2010-02-25 09:36:17 +03: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
|
2010-02-25 09:36:17 +03:00
|
|
|
python tools/test.py internet
|
|
|
|
|
2011-07-08 21:40:35 +04:00
|
|
|
test-uv: all
|
2011-07-08 23:22:44 +04:00
|
|
|
NODE_USE_UV=1 python tools/test.py \
|
|
|
|
simple/test-assert \
|
|
|
|
simple/test-buffer \
|
|
|
|
simple/test-c-ares \
|
|
|
|
simple/test-chdir \
|
|
|
|
simple/test-delayed-require \
|
|
|
|
simple/test-eio-race2 \
|
|
|
|
simple/test-eio-race4 \
|
|
|
|
simple/test-event-emitter-add-listeners \
|
|
|
|
simple/test-event-emitter-modify-in-emit \
|
|
|
|
simple/test-event-emitter-num-args \
|
|
|
|
simple/test-event-emitter-once \
|
|
|
|
simple/test-event-emitter-remove-all-listeners \
|
|
|
|
simple/test-event-emitter-remove-listeners \
|
|
|
|
simple/test-exception-handler \
|
|
|
|
simple/test-exception-handler2 \
|
|
|
|
simple/test-exception-handler \
|
2011-07-15 22:05:12 +04:00
|
|
|
simple/test-executable-path \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-file-read-noexist \
|
|
|
|
simple/test-file-write-stream \
|
|
|
|
simple/test-fs-fsync \
|
|
|
|
simple/test-fs-open \
|
|
|
|
simple/test-fs-readfile-empty \
|
|
|
|
simple/test-fs-read-file-sync \
|
|
|
|
simple/test-fs-read-file-sync-hostname \
|
|
|
|
simple/test-fs-sir-writes-alot \
|
|
|
|
simple/test-fs-write \
|
|
|
|
simple/test-fs-write-buffer \
|
|
|
|
simple/test-fs-write-file \
|
|
|
|
simple/test-fs-write-file-buffer \
|
|
|
|
simple/test-fs-write-stream \
|
|
|
|
simple/test-fs-write-stream-end \
|
|
|
|
simple/test-fs-write-sync \
|
|
|
|
simple/test-global \
|
|
|
|
simple/test-http \
|
|
|
|
simple/test-http-1.0 \
|
2011-07-16 00:20:24 +04:00
|
|
|
simple/test-http-abort-client \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-allow-req-after-204-res \
|
|
|
|
simple/test-http-blank-header \
|
|
|
|
simple/test-http-buffer-sanity \
|
|
|
|
simple/test-http-cat \
|
|
|
|
simple/test-http-chunked \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-client-abort \
|
2011-07-16 00:20:24 +04:00
|
|
|
simple/test-http-client-parse-error \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-client-race \
|
|
|
|
simple/test-http-client-race-2 \
|
|
|
|
simple/test-http-client-upload \
|
|
|
|
simple/test-http-client-upload-buf \
|
|
|
|
simple/test-http-contentLength0 \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-default-encoding \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-dns-fail \
|
|
|
|
simple/test-http-eof-on-connect \
|
|
|
|
simple/test-http-exceptions \
|
|
|
|
simple/test-http-expect-continue \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-extra-response \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-head-request \
|
|
|
|
simple/test-http-head-response-has-no-body \
|
|
|
|
simple/test-http-keep-alive \
|
|
|
|
simple/test-http-keep-alive-close-on-header \
|
|
|
|
simple/test-http-malformed-request \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-many-keep-alive-connections \
|
|
|
|
simple/test-http-mutable-headers \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-parser \
|
|
|
|
simple/test-http-proxy \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-request-end \
|
|
|
|
simple/test-http-response-close \
|
|
|
|
simple/test-http-response-readable \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-server \
|
|
|
|
simple/test-http-server-multiheaders \
|
|
|
|
simple/test-http-set-cookies \
|
|
|
|
simple/test-http-set-timeout \
|
|
|
|
simple/test-http-set-trailers \
|
2011-07-15 02:17:35 +04:00
|
|
|
simple/test-http-upgrade-agent \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-http-upgrade-client \
|
|
|
|
simple/test-http-upgrade-client2 \
|
|
|
|
simple/test-http-upgrade-server \
|
|
|
|
simple/test-http-upgrade-server2 \
|
|
|
|
simple/test-http-wget \
|
|
|
|
simple/test-http-write-empty-string \
|
|
|
|
simple/test-http-wget \
|
|
|
|
simple/test-mkdir-rmdir \
|
|
|
|
simple/test-net-binary \
|
|
|
|
simple/test-net-can-reset-timeout \
|
2011-07-13 04:00:33 +04:00
|
|
|
simple/test-net-connect-buffer \
|
2011-07-16 00:20:24 +04:00
|
|
|
simple/test-net-connect-timeout \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-net-create-connection \
|
2011-07-08 21:40:35 +04:00
|
|
|
simple/test-net-eaddrinuse \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-net-isip \
|
|
|
|
simple/test-net-keepalive \
|
2011-07-08 21:40:35 +04:00
|
|
|
simple/test-net-pingpong \
|
2011-07-09 02:03:48 +04:00
|
|
|
simple/test-net-reconnect \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-net-remote-address-port \
|
2011-07-15 00:18:28 +04:00
|
|
|
simple/test-net-server-max-connections \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-net-server-try-ports \
|
2011-07-13 02:26:45 +04:00
|
|
|
simple/test-net-stream \
|
|
|
|
simple/test-net-socket-timeout \
|
2011-07-08 23:22:44 +04:00
|
|
|
simple/test-next-tick \
|
|
|
|
simple/test-next-tick-errors \
|
|
|
|
simple/test-next-tick-ordering \
|
|
|
|
simple/test-next-tick-ordering2 \
|
|
|
|
simple/test-path \
|
|
|
|
simple/test-pump-file2tcp \
|
|
|
|
simple/test-pump-file2tcp-noexist \
|
|
|
|
simple/test-punycode \
|
|
|
|
simple/test-querystring \
|
|
|
|
simple/test-readdir \
|
|
|
|
simple/test-readdouble \
|
|
|
|
simple/test-readfloat \
|
|
|
|
simple/test-readint \
|
|
|
|
simple/test-readuint \
|
|
|
|
simple/test-regress-GH-819 \
|
|
|
|
simple/test-regress-GH-897 \
|
|
|
|
simple/test-regression-object-prototype \
|
|
|
|
simple/test-require-cache \
|
|
|
|
simple/test-require-cache-without-stat \
|
|
|
|
simple/test-require-exceptions \
|
|
|
|
simple/test-require-resolve \
|
|
|
|
simple/test-script-context \
|
|
|
|
simple/test-script-new \
|
|
|
|
simple/test-script-static-context \
|
|
|
|
simple/test-script-static-new \
|
|
|
|
simple/test-script-static-this \
|
|
|
|
simple/test-script-this \
|
|
|
|
simple/test-stream-pipe-cleanup \
|
|
|
|
simple/test-stream-pipe-error-handling \
|
|
|
|
simple/test-stream-pipe-event \
|
|
|
|
simple/test-stream-pipe-multi \
|
|
|
|
simple/test-string-decoder \
|
|
|
|
simple/test-sys \
|
|
|
|
simple/test-tcp-wrap \
|
|
|
|
simple/test-tcp-wrap-connect \
|
|
|
|
simple/test-tcp-wrap-listen \
|
|
|
|
simple/test-timers-linked-list \
|
|
|
|
simple/test-tty-stdout-end \
|
|
|
|
simple/test-url \
|
|
|
|
simple/test-utf8-scripts \
|
|
|
|
simple/test-vm-create-context-circular-reference \
|
|
|
|
simple/test-writedouble \
|
|
|
|
simple/test-writefloat \
|
|
|
|
simple/test-writeint \
|
|
|
|
simple/test-writeuint \
|
|
|
|
simple/test-zerolengthbufferbug \
|
2011-07-09 01:14:40 +04:00
|
|
|
pummel/test-http-client-reconnect-bug \
|
|
|
|
pummel/test-http-upload-timeout \
|
2011-07-16 00:20:24 +04:00
|
|
|
pummel/test-net-many-clients \
|
2011-07-09 01:14:40 +04:00
|
|
|
pummel/test-net-pause \
|
|
|
|
pummel/test-net-pingpong-delay \
|
|
|
|
pummel/test-net-timeout \
|
|
|
|
pummel/test-timers \
|
|
|
|
pummel/test-timer-wrap \
|
|
|
|
pummel/test-timer-wrap2 \
|
|
|
|
pummel/test-vm-memleak \
|
|
|
|
internet/test-dns \
|
2011-07-08 21:40:35 +04:00
|
|
|
|
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
build/default/node: all
|
|
|
|
|
|
|
|
apidoc_sources = $(wildcard doc/api/*.markdown)
|
|
|
|
apidocs = $(addprefix build/,$(apidoc_sources:.markdown=.html))
|
|
|
|
|
|
|
|
apidoc_dirs = build/doc build/doc/api/ build/doc/api/assets
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix build/,$(wildcard doc/api_assets/*)))
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2010-11-16 07:23:12 +03:00
|
|
|
website_files = \
|
|
|
|
build/doc/index.html \
|
2011-02-10 12:45:15 +03:00
|
|
|
build/doc/v0.4_announcement.html \
|
2010-11-16 07:23:12 +03:00
|
|
|
build/doc/cla.html \
|
|
|
|
build/doc/sh_main.js \
|
|
|
|
build/doc/sh_javascript.min.js \
|
|
|
|
build/doc/sh_vim-dark.css \
|
|
|
|
build/doc/logo.png \
|
|
|
|
build/doc/sponsored.png \
|
2011-03-16 10:44:05 +03:00
|
|
|
build/doc/favicon.ico \
|
2010-11-16 07:23:12 +03:00
|
|
|
build/doc/pipe.css
|
|
|
|
|
2011-01-28 06:47:17 +03:00
|
|
|
doc: build/default/node $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs)
|
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
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
build/doc/api/assets/%: doc/api_assets/% build/doc/api/assets/
|
|
|
|
cp $< $@
|
|
|
|
|
2010-11-16 07:23:12 +03:00
|
|
|
build/doc/%: doc/%
|
|
|
|
cp $< $@
|
|
|
|
|
2010-11-18 04:26:37 +03:00
|
|
|
build/doc/api/%.html: doc/api/%.markdown build/default/node $(apidoc_dirs) $(apiassets) tools/doctool/doctool.js
|
2010-11-15 02:50:14 +03:00
|
|
|
build/default/node tools/doctool/doctool.js doc/template.html $< > $@
|
|
|
|
|
2010-11-16 07:23:12 +03:00
|
|
|
build/doc/%:
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2009-10-03 23:46:59 +04:00
|
|
|
website-upload: doc
|
2010-11-16 09:25:09 +03:00
|
|
|
scp -r build/doc/* $(web_root)
|
2010-11-15 02:50:14 +03:00
|
|
|
|
|
|
|
docopen: build/doc/api/all.html
|
|
|
|
-google-chrome build/doc/api/all.html
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2009-12-30 04:45:15 +03:00
|
|
|
docclean:
|
2010-11-15 02:50:14 +03:00
|
|
|
-rm -rf build/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
|
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
|
|
|
|
-rm -rf build/ node node_g
|
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
|
|
|
|
2010-02-18 02:07:19 +03:00
|
|
|
VERSION=$(shell git describe)
|
2009-10-04 00:42:03 +04:00
|
|
|
TARNAME=node-$(VERSION)
|
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
#dist: doc/node.1 doc/api
|
|
|
|
dist: 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
|
2010-11-15 02:50:14 +03:00
|
|
|
cp -r build/doc/api $(TARNAME)/doc/api
|
2010-05-14 02:54:50 +04:00
|
|
|
rm -rf $(TARNAME)/deps/v8/test # too big
|
|
|
|
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
|
|
|
|
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:
|
2010-12-02 23:11:23 +03:00
|
|
|
PYTHONPATH=tools/closure_linter/ python tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ -r test/
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
cpplint:
|
2010-12-02 09:48:00 +03: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
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install all program staticlib dynamiclib test test-all website-upload
|