node/Makefile

86 строки
1.9 KiB
Makefile
Исходник Обычный вид История

WAF=python tools/waf-light --jobs=1
all:
@$(WAF) build
all-debug:
@$(WAF) -v build
all-progress:
@$(WAF) -p build
install:
@$(WAF) install
uninstall:
@$(WAF) uninstall
test: all
2010-03-03 00:18:59 +03:00
python tools/test.py --mode=release simple
test-all: all
python tools/test.py --mode=debug,release
2010-03-03 00:18:59 +03:00
test-release: all
python tools/test.py --mode=release
test-debug: all
python tools/test.py --mode=debug
2010-02-25 09:36:17 +03:00
test-simple: all
python tools/test.py simple
test-pummel: all
python tools/test.py pummel
test-internet: all
python tools/test.py internet
benchmark: all
build/default/node benchmark/run.js
2010-02-21 09:30:56 +03:00
doc: doc/node.1 doc/api.html doc/index.html doc/changelog.html
doc/api.html: doc/api.markdown
ronn --html doc/api.markdown > doc/api.html
2010-02-21 09:30:56 +03:00
doc/changelog.html: ChangeLog
echo '<html><head><title>Node.js ChangeLog</title> <link rel="stylesheet" href="./pipe.css" type="text/css" /> <link rel="stylesheet" href="./pipe-quirks.css" type="text/css" /> <body><h1>Node.js ChangeLog</h1> <pre>' > doc/changelog.html
cat ChangeLog >> doc/changelog.html
echo '</pre></body></html>' >> doc/changelog.html
doc/node.1: doc/api.markdown
ronn --roff doc/api.markdown > doc/node.1
website-upload: doc
2010-02-18 02:20:06 +03:00
scp doc/* ryan@nodejs.org:~/tinyclouds/node/
docclean:
@-rm -f doc/node.1 doc/api.html doc/changelog.html
2010-03-07 23:13:16 +03:00
clean:
@$(WAF) clean
2010-03-07 23:13:16 +03:00
@-find tools/ -name "*.pyc" -delete
2010-03-07 23:13:16 +03:00
distclean: clean docclean
@-rm -rf build/
check:
@tools/waf-light check
2010-02-18 02:07:19 +03:00
VERSION=$(shell git describe)
TARNAME=node-$(VERSION)
dist: doc/node.1 doc/api.html
2010-02-18 02:07:19 +03:00
git archive --prefix=$(TARNAME)/ HEAD > $(TARNAME).tar
mkdir -p $(TARNAME)/doc
cp doc/node.1 $(TARNAME)/doc/node.1
cp doc/api.html $(TARNAME)/doc/api.html
tar rf $(TARNAME).tar \
$(TARNAME)/doc/node.1 \
$(TARNAME)/doc/api.html
rm -r $(TARNAME)
gzip -f -9 $(TARNAME).tar
.PHONY: benchmark clean docclean dist distclean check uninstall install all test test-all website-upload