Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2011-12-14 17:00:10 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-12-15 02:41:44 +0400
commitbe23c51f6979ef5fd519069a62648d81f25b2ec0 (patch)
tree74d55634c00821df058dfcc70a51c45aa6049edb /Makefile
parentbdd19ab40b0cdb11c85db7cb88081d8bda1370dc (diff)
Implement make install
Fixes #2331, #2197, #2283
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index cda734a374a..886571d7e27 100644
--- a/Makefile
+++ b/Makefile
@@ -10,9 +10,11 @@ out/Release/node: all
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 options.gypi
tools/gyp_node -f make
-install uninstall:
- @echo '`make $(@)` is being reworked, please use the latest stable tag.'
- @echo 'Git users, type `git checkout -b v0.6` now.'
+install: all
+ out/Release/node tools/installer.js ./options.gypi install
+
+uninstall:
+ out/Release/node tools/installer.js ./options.gypi uninstall
clean:
rm -rf out
@@ -321,4 +323,4 @@ cpplint:
lint: jslint cpplint
-.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean check uninstall install all program staticlib dynamiclib test test-all website-upload
+.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