summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2014-12-14 21:02:45 +0100
committerNoah Slater <nslater@apache.org>2014-12-14 21:02:45 +0100
commitb2ee4e7f46755114a8622444ebfb721d6cf87721 (patch)
treee1ae7fab2a028f514c255be7216d4cf637038377
parent9950caae697bf2e0dbcc7447ade26dc99c7df055 (diff)
downloadcouchdb-b2ee4e7f46755114a8622444ebfb721d6cf87721.tar.gz
Better use of Make
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3d6ccbf2a..b4878d8a1 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