Makefile: remove 'install' target. fixes #1717

Signed-off-by: Daira Hopwood <david-sarah@jacaranda.org>
This commit is contained in:
Daira Hopwood 2013-05-25 03:58:38 +01:00
parent ec191bfca6
commit d85a75d7f6
1 changed files with 0 additions and 14 deletions

View File

@ -31,20 +31,6 @@ build:
$(PYTHON) setup.py build $(PYTHON) setup.py build
touch .built touch .built
# 'make install' will do the following:
# build+install tahoe (probably to /usr/lib/pythonN.N/site-packages)
# 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
# a different location
install:
ifdef PREFIX
mkdir -p $(PREFIX)
$(PYTHON) ./setup.py install --single-version-externally-managed \
--prefix=$(PREFIX) --record=./tahoe.files
else
$(PYTHON) ./setup.py install --single-version-externally-managed
endif
# TESTING # TESTING