Repository: couchdb Updated Branches: refs/heads/separate-compile-make-targets 4d104abeb -> ce2c10fe2 (forced update)
Separate out Fauxton compilation from core CouchDB Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/ce2c10fe Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/ce2c10fe Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/ce2c10fe Branch: refs/heads/separate-compile-make-targets Commit: ce2c10fe2180cbb5ae45264fbe8f527f10a1fefd Parents: b2ee4e7 Author: Russell Branca <[email protected]> Authored: Tue Dec 30 16:33:21 2014 -0800 Committer: Russell Branca <[email protected]> Committed: Fri Jan 2 11:57:57 2015 -0800 ---------------------------------------------------------------------- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/ce2c10fe/Makefile ---------------------------------------------------------------------- diff --git a/Makefile b/Makefile index b4878d8..1efd466 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ # License for the specific language governing permissions and limitations under # the License. -all: compile +all: config.erl couch fauxton config.erl: @echo "Apache CouchDB has not been configured." @@ -18,7 +18,7 @@ config.erl: @echo @false -compile: config.erl fauxton +couch: @rebar compile @cp src/couch/priv/couchjs bin/
