Merge branch 'v0.6-merge'
[platform/upstream/nodejs.git] / Makefile
1 -include config.mk
2
3 BUILDTYPE ?= Release
4 PYTHON ?= python
5 DESTDIR ?=
6
7 # BUILDTYPE=Debug builds both release and debug builds. If you want to compile
8 # just the debug build, run `make -C out BUILDTYPE=Debug` instead.
9 ifeq ($(BUILDTYPE),Release)
10 all: out/Makefile node
11 else
12 all: out/Makefile node node_g
13 endif
14
15 # The .PHONY is needed to ensure that we recursively use the out/Makefile
16 # to check for changes.
17 .PHONY: node node_g
18
19 node: config.gypi
20         $(MAKE) -C out BUILDTYPE=Release
21         ln -fs out/Release/node node
22
23 node_g: config.gypi
24         $(MAKE) -C out BUILDTYPE=Debug
25         ln -fs out/Debug/node node_g
26
27 config.gypi: configure
28         ./configure
29
30 out/Debug/node:
31         $(MAKE) -C out BUILDTYPE=Debug
32
33 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
34         tools/gyp_node -f make
35
36 install: all
37         out/Release/node tools/installer.js install $(DESTDIR)
38
39 uninstall:
40         out/Release/node tools/installer.js uninstall
41
42 clean:
43         -rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node blog.html email.md
44         -find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
45         -rm -rf node_modules
46
47 distclean:
48         -rm -rf out
49         -rm -f config.gypi
50         -rm -f config.mk
51         -rm -rf node node_g blog.html email.md
52         -rm -rf node_modules
53
54 test: all node_modules/weak
55         $(PYTHON) tools/test.py --mode=release simple message
56         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
57
58 test-http1: all
59         $(PYTHON) tools/test.py --mode=release --use-http1 simple message
60
61 test-valgrind: all
62         $(PYTHON) tools/test.py --mode=release --valgrind simple message
63
64 node_modules/weak:
65         @if [ ! -f node ]; then make all; fi
66         @if [ ! -d node_modules ]; then mkdir -p node_modules; fi
67         ./node deps/npm/bin/npm-cli.js install weak \
68                 --prefix="$(shell pwd)" --unsafe-perm # go ahead and run as root.
69
70 test-gc: all node_modules/weak
71         $(PYTHON) tools/test.py --mode=release gc
72
73 test-all: all node_modules/weak
74         $(PYTHON) tools/test.py --mode=debug,release
75         make test-npm
76
77 test-all-http1: all
78         $(PYTHON) tools/test.py --mode=debug,release --use-http1
79
80 test-all-valgrind: all
81         $(PYTHON) tools/test.py --mode=debug,release --valgrind
82
83 test-release: all
84         $(PYTHON) tools/test.py --mode=release
85
86 test-debug: all
87         $(PYTHON) tools/test.py --mode=debug
88
89 test-message: all
90         $(PYTHON) tools/test.py message
91
92 test-simple: all
93         $(PYTHON) tools/test.py simple
94
95 test-pummel: all
96         $(PYTHON) tools/test.py pummel
97
98 test-internet: all
99         $(PYTHON) tools/test.py internet
100
101 test-npm: node
102         ./node deps/npm/test/run.js
103
104 test-npm-publish: node
105         npm_package_config_publishtest=true ./node deps/npm/test/run.js
106
107 apidoc_sources = $(wildcard doc/api/*.markdown)
108 apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
109           $(addprefix out/,$(apidoc_sources:.markdown=.json))
110
111 apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets out/doc/about out/doc/community out/doc/logos out/doc/images
112
113 apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
114
115 doc_images = $(addprefix out/,$(wildcard doc/images/* doc/*.jpg doc/*.png))
116
117 website_files = \
118         out/doc/index.html    \
119         out/doc/v0.4_announcement.html   \
120         out/doc/cla.html      \
121         out/doc/sh_main.js    \
122         out/doc/sh_javascript.min.js \
123         out/doc/sh_vim-dark.css \
124         out/doc/sh.css \
125         out/doc/favicon.ico   \
126         out/doc/pipe.css \
127         out/doc/about/index.html \
128         out/doc/community/index.html \
129         out/doc/logos/index.html \
130         out/doc/changelog.html \
131         $(doc_images)
132
133 doc: program $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/
134
135 $(apidoc_dirs):
136         mkdir -p $@
137
138 out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
139         cp $< $@
140
141 out/doc/changelog.html: ChangeLog doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh
142         bash tools/build-changelog.sh
143
144 out/doc/%.html: doc/%.html
145         cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@
146
147 out/doc/%: doc/%
148         cp -r $< $@
149
150 out/doc/api/%.json: doc/api/%.markdown
151         out/Release/node tools/doc/generate.js --format=json $< > $@
152
153 out/doc/api/%.html: doc/api/%.markdown
154         out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@
155
156 email.md: ChangeLog tools/email-footer.md
157         bash tools/changelog-head.sh > $@
158         cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@
159
160 blog.html: email.md
161         cat $< | ./node tools/doc/node_modules/.bin/marked > $@
162
163 website-upload: doc
164         rsync -r out/doc/ node@nodejs.org:~/web/nodejs.org/
165         ssh node@nodejs.org '\
166     rm -f ~/web/nodejs.org/dist/latest &&\
167     ln -s $(VERSION) ~/web/nodejs.org/dist/latest &&\
168     rm -f ~/web/nodejs.org/docs/latest &&\
169     ln -s $(VERSION) ~/web/nodejs.org/docs/latest &&\
170     rm -f ~/web/nodejs.org/dist/node-latest.tar.gz &&\
171     ln -s $(VERSION)/node-$(VERSION).tar.gz ~/web/nodejs.org/dist/node-latest.tar.gz'
172
173 docopen: out/doc/api/all.html
174         -google-chrome out/doc/api/all.html
175
176 docclean:
177         -rm -rf out/doc
178
179 VERSION=v$(shell $(PYTHON) tools/getnodeversion.py)
180 TARNAME=node-$(VERSION)
181 TARBALL=$(TARNAME).tar.gz
182 PKG=out/$(TARNAME).pkg
183 packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
184
185 dist: doc $(TARBALL) $(PKG)
186
187 PKGDIR=out/dist-osx
188
189 pkg: $(PKG)
190
191 $(PKG):
192         rm -rf $(PKGDIR)
193         rm -rf out/deps out/Release
194         ./configure --prefix=$(PKGDIR)/32/usr/local --without-snapshot --dest-cpu=ia32
195         $(MAKE) install
196         rm -rf out/deps out/Release
197         ./configure --prefix=$(PKGDIR)/usr/local --without-snapshot --dest-cpu=x64
198         $(MAKE) install
199         lipo $(PKGDIR)/32/usr/local/bin/node \
200                 $(PKGDIR)/usr/local/bin/node \
201                 -output $(PKGDIR)/usr/local/bin/node-universal \
202                 -create
203         mv $(PKGDIR)/usr/local/bin/node-universal $(PKGDIR)/usr/local/bin/node
204         rm -rf $(PKGDIR)/32
205         $(packagemaker) \
206                 --id "org.nodejs.NodeJS-$(VERSION)" \
207                 --doc tools/osx-pkg.pmdoc \
208                 --out $(PKG)
209
210 $(TARBALL): node out/doc
211         @if [ $(shell ./node --version) = "$(VERSION)" ]; then \
212                 exit 0; \
213         else \
214           echo "" >&2 ; \
215                 echo "$(shell ./node --version) doesn't match $(VERSION)." >&2 ; \
216           echo "Did you remember to update src/node_version.cc?" >&2 ; \
217           echo "" >&2 ; \
218                 exit 1 ; \
219         fi
220         git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
221         mkdir -p $(TARNAME)/doc
222         cp doc/node.1 $(TARNAME)/doc/node.1
223         cp -r out/doc/api $(TARNAME)/doc/api
224         rm -rf $(TARNAME)/deps/v8/test # too big
225         rm -rf $(TARNAME)/doc/images # too big
226         tar -cf $(TARNAME).tar $(TARNAME)
227         rm -rf $(TARNAME)
228         gzip -f -9 $(TARNAME).tar
229
230 dist-upload: $(TARBALL) $(PKG)
231         ssh node@nodejs.org mkdir -p web/nodejs.org/dist/$(VERSION)
232         scp $(TARBALL) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL)
233         scp $(PKG) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARNAME).pkg
234
235 bench:
236          benchmark/http_simple_bench.sh
237
238 bench-idle:
239         ./node benchmark/idle_server.js &
240         sleep 1
241         ./node benchmark/idle_clients.js &
242
243 jslint:
244         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
245
246 cpplint:
247         @$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)
248
249 lint: jslint cpplint
250
251 .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