You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2016/04/18 09:47:28 UTC

[4/4] couchdb commit: updated refs/heads/no-make-install to 123bc93

rename make install to make build, add install notice


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/123bc939
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/123bc939
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/123bc939

Branch: refs/heads/no-make-install
Commit: 123bc939f8a411c3261fb94a2bd4d4552730d75e
Parents: 583a61f
Author: Jan Lehnardt <ja...@apache.org>
Authored: Mon Apr 18 09:47:05 2016 +0200
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Apr 18 09:47:05 2016 +0200

----------------------------------------------------------------------
 Makefile | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/123bc939/Makefile
----------------------------------------------------------------------
diff --git a/Makefile b/Makefile
index 0e221fa..44196d7 100644
--- a/Makefile
+++ b/Makefile
@@ -227,10 +227,10 @@ dist: all
 	@echo "Done: apache-couchdb-$(COUCHDB_VERSION).tar.gz"
 
 
-.PHONY: install
-# target: install - Install CouchDB :-)
+.PHONY: build
+# target: build - Build CouchDB!
 -include install.mk
-install: all
+build: all
 	@echo "Installing CouchDB into rel/couchdb/ ..."
 	@rm -rf rel/couchdb
 	@$(REBAR) generate > /dev/null 2>&1 # make full erlang release
@@ -259,10 +259,21 @@ endif
 
 	@echo "... done"
 	@echo
-	@echo "    You can now copy the rel/couchdb/ directory anywhere on your system."
+	@echo "    You can now copy the rel/couchdb directory anywhere on your system."
 	@echo "    Start CouchDB with ./bin/couchdb from within that directory."
 	@echo
 
+.PHONY: install
+# target: install- install CouchDB :)
+install:
+	@echo
+	@echo "Notice: There is no 'make install' command for CouchDB 2.0 yet."
+	@echo
+	@echo "    To install CouchDB into your system, copy the rel/couchdb"
+	@echo "    to your desired installation location. For example:"
+	@echo "    cp -r rel/couchdb /usr/local/lib"
+	@echo
+
 ################################################################################
 # Cleaning
 ################################################################################