mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
5299a959e0
Summary: Submitted by Ben Maurer Reviewed By: dreiss Test Plan: Automated python testing for Thrift, lovely. Revert: OK DiffCamp Revision: 737 git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665293 13f79535-47bb-0310-9956-ffa450edef68
17 lines
511 B
Makefile
17 lines
511 B
Makefile
DESTDIR ?= /
|
|
EXTRA_DIST = bootstrap.sh cleanup.sh setup.py LICENSE src
|
|
|
|
all:
|
|
$(PYTHON) setup.py build
|
|
|
|
# We're ignoring prefix here because site-packages seems to be
|
|
# the equivalent of /usr/local/lib in Python land.
|
|
# Old version (can't put inline because it's not portable).
|
|
#$(PYTHON) setup.py install --prefix=$(prefix) --root=$(DESTDIR) $(PYTHON_SETUPUTIL_ARGS)
|
|
install-exec-hook:
|
|
$(PYTHON) setup.py install --root=$(DESTDIR) --prefix=$(PY_PREFIX) $(PYTHON_SETUPUTIL_ARGS)
|
|
|
|
clean-generic:
|
|
rm -rf build
|
|
|