Repository: couchdb Updated Branches: refs/heads/master 9950caae6 -> b2ee4e7f4
Better use of Make Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/b2ee4e7f Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/b2ee4e7f Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/b2ee4e7f Branch: refs/heads/master Commit: b2ee4e7f46755114a8622444ebfb721d6cf87721 Parents: 9950caa Author: Noah Slater <[email protected]> Authored: Sun Dec 14 21:02:45 2014 +0100 Committer: Noah Slater <[email protected]> Committed: Sun Dec 14 21:02:45 2014 +0100 ---------------------------------------------------------------------- Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/b2ee4e7f/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index 3d6ccbf..b4878d8 100644 --- a/Makefile +++ b/Makefile @@ -71,6 +71,8 @@ eunit: compile javascript: compile @dev/run -q test/javascript/run -fauxton: -# This next line so Noah throws his arms up in dispair and teaches me proper Make again -- Love, Jan - @if [ ! -d share/www ]; then echo "Building Fauxton" && cd src/fauxton && npm install && grunt couchdb; fi +fauxton: share/www + +share/www: + @echo "Building Fauxton" + @cd src/fauxton && npm install && grunt couchdb
