From: Zooko O'Whielacronx Date: Tue, 1 Jan 2008 07:44:30 +0000 (-0700) Subject: setup: "make" now defaults to "simple-build", which depends on build-deps X-Git-Tag: allmydata-tahoe-0.7.0~58 X-Git-Url: https://git.rkrishnan.org/reedownlee?a=commitdiff_plain;h=f18a6167ca8b0bf85a6d2f70da5d5f7e0e940bf8;p=tahoe-lafs%2Ftahoe-lafs.git setup: "make" now defaults to "simple-build", which depends on build-deps This is for conformance with the simple new install.html. People who don't want build-deps can run "make build". --- diff --git a/Makefile b/Makefile index 923dd73f..f6ef76da 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # this Makefile requires GNU make -default: build +default: simple-build PYTHON=python PATHSEP=$(shell python -c 'import os ; print os.pathsep') @@ -72,6 +72,8 @@ make-version: $(MAKE) build touch .built +simple-build: build-deps build + build: $(PYTHON) ./setup.py build_ext -i $(INCLUDE_DIRS_ARG) $(LIBRARY_DIRS_ARG) chmod +x bin/tahoe