node/Makefile

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

-include config.mk
BUILDTYPE ?= Release
PYTHON ?= python
# 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 15:23:17 +04:00
ifeq ($(BUILDTYPE),Release)
all: out/Makefile node
else
all: out/Makefile node node_g
2011-12-17 15:23:17 +04:00
endif
# The .PHONY is needed to ensure that we recursively use the out/Makefile
# to check for changes.
.PHONY: node node_g
2011-12-17 15:23:17 +04:00
node: config.gypi
2011-12-17 15:23:17 +04:00
$(MAKE) -C out BUILDTYPE=Release
ln -fs out/Release/node node
2011-12-17 15:23:17 +04:00
node_g: config.gypi
$(MAKE) -C out BUILDTYPE=Debug
ln -fs out/Debug/node node_g
config.gypi: configure
./configure
2011-12-17 15:23:17 +04:00
out/Debug/node:
$(MAKE) -C out BUILDTYPE=Debug
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
tools/gyp_node -f make
install: all
out/Release/node tools/installer.js install
uninstall:
out/Release/node tools/installer.js uninstall
clean:
-rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node blog.html email.md
-find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
distclean:
2011-11-18 05:18:29 +04:00
-rm -rf out
-rm -f config.gypi
-rm -f config.mk
-rm -rf node node_g blog.html email.md
2010-10-04 13:11:27 +04:00
test: all
$(PYTHON) tools/test.py --mode=release simple message
2012-02-22 00:02:57 +04: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
test-http1: all
$(PYTHON) tools/test.py --mode=release --use-http1 simple message
2010-12-22 21:24:34 +03:00
test-valgrind: all
$(PYTHON) tools/test.py --mode=release --valgrind simple message
2010-12-22 21:24:34 +03:00
test-all: all
python tools/test.py --mode=debug,release
$(MAKE) test-npm
test-all-http1: all
$(PYTHON) tools/test.py --mode=debug,release --use-http1
2010-12-22 21:24:34 +03:00
test-all-valgrind: all
$(PYTHON) tools/test.py --mode=debug,release --valgrind
2010-12-22 21:24:34 +03:00
test-release: all
$(PYTHON) tools/test.py --mode=release
2010-03-03 00:18:59 +03:00
test-debug: all
$(PYTHON) tools/test.py --mode=debug
test-message: all
$(PYTHON) tools/test.py message
2010-06-19 05:14:06 +04: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
2010-02-25 09:36:17 +03:00
test-npm: node
2011-12-17 06:04:39 +04:00
./node deps/npm/test/run.js
test-npm-publish: node
2011-12-17 06:04:39 +04:00
npm_package_config_publishtest=true ./node deps/npm/test/run.js
2011-07-08 21:40:35 +04: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))
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
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 \
$(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
$(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/
cp $< $@
out/doc/%.html: doc/%.html
cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@
2011-08-24 01:08:53 +04:00
out/doc/%: doc/%
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 $< > $@
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 > $@
website-upload: doc
rsync -r out/doc/ node@nodejs.org:~/web/nodejs.org/
2011-08-24 01:08:53 +04:00
docopen: out/doc/api/all.html
-google-chrome out/doc/api/all.html
docclean:
2011-08-24 01:08:53 +04:00
-rm -rf out/doc
VERSION=v$(shell $(PYTHON) tools/getnodeversion.py)
TARNAME=node-$(VERSION)
2012-01-17 06:40:12 +04:00
TARBALL=$(TARNAME).tar.gz
PKG=out/$(TARNAME).pkg
packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
2012-01-17 06:40:12 +04:00
dist: doc $(TARBALL) $(PKG)
2011-11-12 02:31:15 +04:00
2011-11-21 07:22:30 +04:00
PKGDIR=out/dist-osx
pkg: $(PKG)
2011-11-12 02:31:15 +04:00
$(PKG):
rm -rf $(PKGDIR)
rm -rf out/deps out/Release
./configure --prefix=$(PKGDIR)/32/usr/local --without-snapshot --dest-cpu=ia32
2012-01-17 06:40:12 +04:00
$(MAKE) install
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-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
2012-01-17 06:40:12 +04:00
$(TARBALL): node out/doc
@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 09:48:00 +03:00
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
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
rm -rf $(TARNAME)/deps/v8/test # too big
rm -rf $(TARNAME)/doc/images # too big
tar -cf $(TARNAME).tar $(TARNAME)
rm -rf $(TARNAME)
gzip -f -9 $(TARNAME).tar
2012-01-17 06:52:36 +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 &
jslint:
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
cpplint:
@$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)
lint: jslint cpplint
2012-01-17 06:40:12 +04: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