node/Makefile

99 lines
2.0 KiB
Makefile
Raw Normal View History

WAF=python tools/waf-light
all: program
all-progress:
@$(WAF) -p build
program:
@$(WAF) --product-type=program build
staticlib:
@$(WAF) --product-type=cstaticlib build
dynamiclib:
@$(WAF) --product-type=cshlib build
install:
@$(WAF) install
uninstall:
@$(WAF) uninstall
2010-10-04 17:11:27 +08:00
test: all
2010-06-19 09:14:06 +08:00
python tools/test.py --mode=release simple message
test-all: all
python tools/test.py --mode=debug,release
test-release: all
2010-03-03 05:18:59 +08:00
python tools/test.py --mode=release
test-debug: all
python tools/test.py --mode=debug
test-message: all
2010-06-19 09:14:06 +08:00
python tools/test.py message
test-simple: all
2010-02-25 14:36:17 +08:00
python tools/test.py simple
test-pummel: all
2010-02-25 14:36:17 +08:00
python tools/test.py pummel
test-internet: all
2010-02-25 14:36:17 +08:00
python tools/test.py internet
2010-10-29 06:10:20 +08:00
2010-11-14 06:57:35 +08:00
doc: doc/api/all.html doc/changelog.html
docopen: doc/api/all.html
-google-chrome doc/api/all.html
doc/api/all.html: node doc/api/*.markdown
./node tools/doctool/doctool.js
2010-10-29 06:10:20 +08:00
doc/changelog.html: ChangeLog doc/changelog_header.html doc/changelog_footer.html
cat doc/changelog_header.html ChangeLog doc/changelog_footer.html > doc/changelog.html
2010-10-29 06:10:20 +08:00
website-upload: doc
2010-08-20 17:00:37 +08:00
scp doc/* ryan@nodejs.org:~/web/nodejs.org/
docclean:
@-rm -f doc/api/*.html doc/changelog.html
2010-03-08 04:13:16 +08:00
clean:
@$(WAF) clean
@-find tools -name "*.pyc" | xargs rm -f
2010-04-20 06:48:12 +08:00
distclean: docclean
@-find tools -name "*.pyc" | xargs rm -f
@-rm -rf build/ node node_g
check:
@tools/waf-light check
2010-02-18 07:07:19 +08:00
VERSION=$(shell git describe)
TARNAME=node-$(VERSION)
dist: doc/node.1 doc/api.html
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
mkdir -p $(TARNAME)/doc
cp doc/node.1 $(TARNAME)/doc/node.1
cp doc/api.html $(TARNAME)/doc/api.html
rm -rf $(TARNAME)/deps/v8/test # too big
tar -cf $(TARNAME).tar $(TARNAME)
rm -rf $(TARNAME)
gzip -f -9 $(TARNAME).tar
2010-10-14 07:20:24 +08:00
bench:
benchmark/http_simple_bench.sh
2010-10-16 01:05:22 +08:00
bench-idle:
./node benchmark/idle_server.js &
sleep 1
./node benchmark/idle_clients.js &
.PHONY: bench clean docclean dist distclean check uninstall install all program staticlib dynamiclib test test-all website-upload