aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@redhat.com>2011-07-22 07:33:07 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2011-08-08 11:54:26 -0400
commit9941c96ad869d10f7e34e03990ce450ab8fcb83d (patch)
treedf08be9a56eccc1c7cf184d19e66b2a24192c318 /tools/perf/Makefile
parentaba8d056078e47350d85b06a9cabd5afcc4b72ea (diff)
perf tools: Add support to install perf python extension
Adding install-python_ext target to install python extension related files. Installation directory is governed by python distutils package and follows the DESTDIR variable settings. Also moving python extension build output into '$(O)python_ext_build' directory and making it configurable via PYTHON_EXTBUILD variable. Keeping the '$(O)python/perf.so' file, so it could be used for testing as of until now. Cc: Ingo Molnar <mingo@elte.hu> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/20110722113307.GA1931@jolsa.brq.redhat.com Signed-off-by: Jiri Olsa <jolsa@redhat.com> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile19
1 files changed, 13 insertions, 6 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index 5bf48fcc6768..822f967433a6 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -178,9 +178,9 @@ strip-libs = $(filter-out -l%,$(1))
178 178
179$(OUTPUT)python/perf.so: $(PYRF_OBJS) 179$(OUTPUT)python/perf.so: $(PYRF_OBJS)
180 $(QUIET_GEN)CFLAGS='$(BASIC_CFLAGS)' $(PYTHON_WORD) util/setup.py \ 180 $(QUIET_GEN)CFLAGS='$(BASIC_CFLAGS)' $(PYTHON_WORD) util/setup.py \
181 --quiet build_ext \ 181 --quiet build_ext; \
182 --build-lib='$(OUTPUT)python' \ 182 mkdir -p $(OUTPUT)python && \
183 --build-temp='$(OUTPUT)python/temp' 183 cp $(PYTHON_EXTBUILD_LIB)perf.so $(OUTPUT)python/
184# 184#
185# No Perl scripts right now: 185# No Perl scripts right now:
186# 186#
@@ -506,9 +506,13 @@ else
506 506
507 PYTHON_WORD := $(call shell-wordify,$(PYTHON)) 507 PYTHON_WORD := $(call shell-wordify,$(PYTHON))
508 508
509 python-clean := $(PYTHON_WORD) util/setup.py clean \ 509 # python extension build directories
510 --build-lib='$(OUTPUT)python' \ 510 PYTHON_EXTBUILD := $(OUTPUT)python_ext_build/
511 --build-temp='$(OUTPUT)python/temp' 511 PYTHON_EXTBUILD_LIB := $(PYTHON_EXTBUILD)lib/
512 PYTHON_EXTBUILD_TMP := $(PYTHON_EXTBUILD)tmp/
513 export PYTHON_EXTBUILD_LIB PYTHON_EXTBUILD_TMP
514
515 python-clean := rm -rf $(PYTHON_EXTBUILD) $(OUTPUT)python/perf.so
512 516
513 ifdef NO_LIBPYTHON 517 ifdef NO_LIBPYTHON
514 $(call disable-python) 518 $(call disable-python)
@@ -865,6 +869,9 @@ install: all
865 $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python' 869 $(INSTALL) scripts/python/*.py -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python'
866 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin' 870 $(INSTALL) scripts/python/bin/* -t '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/scripts/python/bin'
867 871
872install-python_ext:
873 $(PYTHON_WORD) util/setup.py --quiet install --root='/$(DESTDIR_SQ)'
874
868install-doc: 875install-doc:
869 $(MAKE) -C Documentation install 876 $(MAKE) -C Documentation install
870 877