Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E43DD18DB3 for ; Wed, 22 Jul 2015 05:29:18 +0000 (UTC) Received: (qmail 19548 invoked by uid 500); 22 Jul 2015 05:29:18 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 19465 invoked by uid 500); 22 Jul 2015 05:29:18 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 19163 invoked by uid 99); 22 Jul 2015 05:29:18 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 22 Jul 2015 05:29:18 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4B84EE1801; Wed, 22 Jul 2015 05:29:18 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Wed, 22 Jul 2015 05:29:21 -0000 Message-Id: <7254cc8e03864ad894c038ad51592dc4@git.apache.org> In-Reply-To: <965fb5c70d53481cbb0ba93c46adbed7@git.apache.org> References: <965fb5c70d53481cbb0ba93c46adbed7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [04/50] couchdb commit: updated refs/heads/developer-preview-2.0 to 2a31bca re-enable doc, create tarball Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/cadd21ca Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/cadd21ca Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/cadd21ca Branch: refs/heads/developer-preview-2.0 Commit: cadd21ca09dede1b07dcb80e01a1fb93c1be4145 Parents: 872b52f Author: Jan Lehnardt Authored: Fri Apr 3 17:55:54 2015 +0200 Committer: Jan Lehnardt Committed: Wed Jun 24 23:06:45 2015 +0200 ---------------------------------------------------------------------- Makefile | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/cadd21ca/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index 4dab51a..58aab42 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,7 @@ dist: all @rm -rf rel/couchdb @rebar generate @cp -r share/www rel/couchdb/share/www + @cp -r share/docs rel/couchdb/share/docs # creates a source tarball release: @@ -49,11 +50,15 @@ release: # build fauxton $(MAKE) fauxton cp -r share/www apache-couchdb/share/ - # - # # build docs - # cd src/docs; make - # mkdir apache-couchdb/share/docs - # cp -r src/docs/build/html apache-couchdb/share/docs/html + + # build docs + cd src/docs; make + mkdir apache-couchdb/share/docs + cp -r src/docs/build/html apache-couchdb/share/docs/html + + # Tar! + tar czf apache-couchdb.tar.gz apache-couchdb + echo "Done: apache-couchdb.tar.gz" distclean: clean @rm install.mk @@ -81,6 +86,9 @@ install: dist @touch $(prefix)/var/log/couchdb.log @chown $(user) $(prefix)/var/log/couchdb.log +uninstall: + @rm -rf $(prefix) + install.mk: # ignore install.mk missing if we are running # `make clean` without having run ./configure first