build: fix `make -j' fails after `make clean'
[platform/upstream/nodejs.git] / Makefile
1 -include config.mk
2
3 BUILDTYPE ?= Release
4 PYTHON ?= python
5 DESTDIR ?=
6 SIGN ?=
7
8 # Default to verbose builds.
9 # To do quiet/pretty builds, run `make V=` to set V to an empty string,
10 # or set the V environment variable to an empty string.
11 V ?= 1
12
13 # BUILDTYPE=Debug builds both release and debug builds. If you want to compile
14 # just the debug build, run `make -C out BUILDTYPE=Debug` instead.
15 ifeq ($(BUILDTYPE),Release)
16 all: out/Makefile node
17 else
18 all: out/Makefile node node_g
19 endif
20
21 # The .PHONY is needed to ensure that we recursively use the out/Makefile
22 # to check for changes.
23 .PHONY: node node_g
24
25 node: config.gypi out/Makefile
26         $(MAKE) -C out BUILDTYPE=Release V=$(V)
27         ln -fs out/Release/node node
28
29 node_g: config.gypi out/Makefile
30         $(MAKE) -C out BUILDTYPE=Debug V=$(V)
31         ln -fs out/Debug/node node_g
32
33 config.gypi: configure
34         ./configure
35
36 out/Debug/node:
37         $(MAKE) -C out BUILDTYPE=Debug V=$(V)
38
39 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
40         $(PYTHON) tools/gyp_node -f make
41
42 install: all
43         $(PYTHON) tools/install.py $@ $(DESTDIR)
44
45 uninstall:
46         $(PYTHON) tools/install.py $@ $(DESTDIR)
47
48 clean:
49         -rm -rf out/Makefile node node_g out/$(BUILDTYPE)/node blog.html email.md
50         -find out/ -name '*.o' -o -name '*.a' | xargs rm -rf
51         -rm -rf node_modules
52
53 distclean:
54         -rm -rf out
55         -rm -f config.gypi
56         -rm -f config.mk
57         -rm -rf node node_g blog.html email.md
58         -rm -rf node_modules
59
60 test: all
61         $(PYTHON) tools/test.py --mode=release simple message
62         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
63
64 test-http1: all
65         $(PYTHON) tools/test.py --mode=release --use-http1 simple message
66
67 test-valgrind: all
68         $(PYTHON) tools/test.py --mode=release --valgrind simple message
69
70 test/gc/node_modules/weak/build:
71         @if [ ! -f node ]; then make all; fi
72         ./node deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
73                 --directory="$(shell pwd)/test/gc/node_modules/weak" \
74                 --nodedir="$(shell pwd)"
75
76 test-gc: all test/gc/node_modules/weak/build
77         $(PYTHON) tools/test.py --mode=release gc
78
79 test-all: all test/gc/node_modules/weak/build
80         $(PYTHON) tools/test.py --mode=debug,release
81         make test-npm
82
83 test-all-http1: all
84         $(PYTHON) tools/test.py --mode=debug,release --use-http1
85
86 test-all-valgrind: all
87         $(PYTHON) tools/test.py --mode=debug,release --valgrind
88
89 test-release: all
90         $(PYTHON) tools/test.py --mode=release
91
92 test-debug: all
93         $(PYTHON) tools/test.py --mode=debug
94
95 test-message: all
96         $(PYTHON) tools/test.py message
97
98 test-simple: all
99         $(PYTHON) tools/test.py simple
100
101 test-pummel: all
102         $(PYTHON) tools/test.py pummel
103
104 test-internet: all
105         $(PYTHON) tools/test.py internet
106
107 test-npm: node
108         ./node deps/npm/test/run.js
109
110 test-npm-publish: node
111         npm_package_config_publishtest=true ./node deps/npm/test/run.js
112
113 apidoc_sources = $(wildcard doc/api/*.markdown)
114 apidocs = $(addprefix out/,$(apidoc_sources:.markdown=.html)) \
115           $(addprefix out/,$(apidoc_sources:.markdown=.json))
116
117 apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets out/doc/about out/doc/community out/doc/download out/doc/logos out/doc/images
118
119 apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
120
121 doc_images = $(addprefix out/,$(wildcard doc/images/* doc/*.jpg doc/*.png))
122
123 website_files = \
124         out/doc/index.html    \
125         out/doc/v0.4_announcement.html   \
126         out/doc/cla.html      \
127         out/doc/sh_main.js    \
128         out/doc/sh_javascript.min.js \
129         out/doc/sh_vim-dark.css \
130         out/doc/sh.css \
131         out/doc/favicon.ico   \
132         out/doc/pipe.css \
133         out/doc/about/index.html \
134         out/doc/community/index.html \
135         out/doc/download/index.html \
136         out/doc/logos/index.html \
137         out/doc/changelog.html \
138         $(doc_images)
139
140 doc: $(apidoc_dirs) $(website_files) $(apiassets) $(apidocs) tools/doc/ blog node
141
142 blogclean:
143         rm -rf out/blog
144
145 blog: doc/blog out/Release/node tools/blog
146         out/Release/node tools/blog/generate.js doc/blog/ out/blog/ doc/blog.html doc/rss.xml
147
148 $(apidoc_dirs):
149         mkdir -p $@
150
151 out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
152         cp $< $@
153
154 out/doc/changelog.html: ChangeLog doc/changelog-head.html doc/changelog-foot.html tools/build-changelog.sh node
155         bash tools/build-changelog.sh
156
157 out/doc/%.html: doc/%.html node
158         cat $< | sed -e 's|__VERSION__|'$(VERSION)'|g' > $@
159
160 out/doc/%: doc/%
161         cp -r $< $@
162
163 out/doc/api/%.json: doc/api/%.markdown node
164         out/Release/node tools/doc/generate.js --format=json $< > $@
165
166 out/doc/api/%.html: doc/api/%.markdown node
167         out/Release/node tools/doc/generate.js --format=html --template=doc/template.html $< > $@
168
169 email.md: ChangeLog tools/email-footer.md
170         bash tools/changelog-head.sh | sed 's|^\* #|* \\#|g' > $@
171         cat tools/email-footer.md | sed -e 's|__VERSION__|'$(VERSION)'|g' >> $@
172
173 blog.html: email.md
174         cat $< | ./node tools/doc/node_modules/.bin/marked > $@
175
176 blog-upload: blog
177         rsync -r out/blog/ node@nodejs.org:~/web/nodejs.org/blog/
178
179 website-upload: doc
180         rsync -r out/doc/ node@nodejs.org:~/web/nodejs.org/
181         ssh node@nodejs.org '\
182     rm -f ~/web/nodejs.org/dist/latest &&\
183     ln -s $(VERSION) ~/web/nodejs.org/dist/latest &&\
184     rm -f ~/web/nodejs.org/docs/latest &&\
185     ln -s $(VERSION) ~/web/nodejs.org/docs/latest &&\
186     rm -f ~/web/nodejs.org/dist/node-latest.tar.gz &&\
187     ln -s $(VERSION)/node-$(VERSION).tar.gz ~/web/nodejs.org/dist/node-latest.tar.gz'
188
189 docopen: out/doc/api/all.html
190         -google-chrome out/doc/api/all.html
191
192 docclean:
193         -rm -rf out/doc
194
195 VERSION=v$(shell $(PYTHON) tools/getnodeversion.py)
196 RELEASE=$(shell $(PYTHON) tools/getnodeisrelease.py)
197 PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
198 ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)
199 DESTCPU ?= x64
200 else
201 DESTCPU ?= ia32
202 endif
203 ifeq ($(DESTCPU),x64)
204 ARCH=x64
205 else
206 ARCH=x86
207 endif
208 TARNAME=node-$(VERSION)
209 TARBALL=$(TARNAME).tar.gz
210 BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
211 BINARYTAR=$(BINARYNAME).tar.gz
212 PKG=out/$(TARNAME).pkg
213 packagemaker=/Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
214
215 dist: doc $(TARBALL) $(PKG)
216
217 PKGDIR=out/dist-osx
218
219 release-only:
220         @if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
221                 exit 0 ; \
222         else \
223           echo "" >&2 ; \
224                 echo "The git repository is not clean." >&2 ; \
225                 echo "Please commit changes before building release tarball." >&2 ; \
226                 echo "" >&2 ; \
227                 git status --porcelain | egrep -v '^\?\?' >&2 ; \
228                 echo "" >&2 ; \
229                 exit 1 ; \
230         fi
231         @if [ "$(RELEASE)" = "1" ]; then \
232                 exit 0; \
233         else \
234           echo "" >&2 ; \
235                 echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
236           echo "Did you remember to update src/node_version.cc?" >&2 ; \
237           echo "" >&2 ; \
238                 exit 1 ; \
239         fi
240
241 pkg: $(PKG)
242
243 $(PKG): release-only
244         rm -rf $(PKGDIR)
245         rm -rf out/deps out/Release
246         ./configure --prefix=$(PKGDIR)/32/usr/local --without-snapshot --dest-cpu=ia32
247         $(MAKE) install V=$(V)
248         rm -rf out/deps out/Release
249         ./configure --prefix=$(PKGDIR)/usr/local --without-snapshot --dest-cpu=x64
250         $(MAKE) install V=$(V)
251         SIGN="$(SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
252         lipo $(PKGDIR)/32/usr/local/bin/node \
253                 $(PKGDIR)/usr/local/bin/node \
254                 -output $(PKGDIR)/usr/local/bin/node-universal \
255                 -create
256         mv $(PKGDIR)/usr/local/bin/node-universal $(PKGDIR)/usr/local/bin/node
257         rm -rf $(PKGDIR)/32
258         $(packagemaker) \
259                 --id "org.nodejs.Node" \
260                 --doc tools/osx-pkg.pmdoc \
261                 --out $(PKG)
262         SIGN="$(SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
263
264 $(TARBALL): release-only node doc
265         git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
266         mkdir -p $(TARNAME)/doc/api
267         cp doc/node.1 $(TARNAME)/doc/node.1
268         cp -r out/doc/api/* $(TARNAME)/doc/api/
269         rm -rf $(TARNAME)/deps/v8/test # too big
270         rm -rf $(TARNAME)/doc/images # too big
271         find $(TARNAME)/ -type l | xargs rm # annoying on windows
272         tar -cf $(TARNAME).tar $(TARNAME)
273         rm -rf $(TARNAME)
274         gzip -f -9 $(TARNAME).tar
275
276 tar: $(TARBALL)
277
278 $(BINARYTAR): release-only
279         rm -rf $(BINARYNAME)
280         rm -rf out/deps out/Release
281         ./configure --prefix=/ --without-snapshot --dest-cpu=$(DESTCPU)
282         $(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
283         cp README.md $(BINARYNAME)
284         cp LICENSE $(BINARYNAME)
285         cp ChangeLog $(BINARYNAME)
286         tar -cf $(BINARYNAME).tar $(BINARYNAME)
287         rm -rf $(BINARYNAME)
288         gzip -f -9 $(BINARYNAME).tar
289
290 binary: $(BINARYTAR)
291
292 dist-upload: $(TARBALL) $(PKG)
293         ssh node@nodejs.org mkdir -p web/nodejs.org/dist/$(VERSION)
294         scp $(TARBALL) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL)
295         scp $(PKG) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARNAME).pkg
296
297 bench:
298          benchmark/http_simple_bench.sh
299
300 bench-idle:
301         ./node benchmark/idle_server.js &
302         sleep 1
303         ./node benchmark/idle_clients.js &
304
305 jslintfix:
306         PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/fixjsstyle.py --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
307
308 jslint:
309         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
310
311 cpplint:
312         @$(PYTHON) tools/cpplint.py $(wildcard src/*.cc src/*.h src/*.c)
313
314 lint: jslint cpplint
315
316 .PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install install-includes install-bin all staticlib dynamiclib test test-all website-upload pkg blog blogclean tar binary release-only