diff options
author | Namhyung Kim <namhyung.kim@lge.com> | 2012-09-28 05:31:58 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-09-28 20:07:36 -0400 |
commit | e4898336a1b4d8a259663d15b12f359b6c2887a2 (patch) | |
tree | 442b54ddd7825e09ba6b9d1619676dc2bc1ae153 /tools | |
parent | fee9e3732a377275a99b6f3c8b4e1f1569f17575 (diff) |
perf tools: Remove unused PYRF_OBJS variable on Makefile
It seems that the PYRF_OBJS variable is not used anymore or has no
effect at least. The util/setup.py tracks its dependency using
util/python-ext-sources file and resulting objects are saved under
python_ext_build/tmp/.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1348824728-14025-3-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perf/Makefile | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index 834f09fa5c62..9cd49130f438 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -185,7 +185,7 @@ strip-libs = $(filter-out -l%,$(1)) | |||
185 | PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources) | 185 | PYTHON_EXT_SRCS := $(shell grep -v ^\# util/python-ext-sources) |
186 | PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py | 186 | PYTHON_EXT_DEPS := util/python-ext-sources util/setup.py |
187 | 187 | ||
188 | $(OUTPUT)python/perf.so: $(PYRF_OBJS) $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS) | 188 | $(OUTPUT)python/perf.so: $(PYTHON_EXT_SRCS) $(PYTHON_EXT_DEPS) |
189 | $(QUIET_GEN)CFLAGS='$(BASIC_CFLAGS)' $(PYTHON_WORD) util/setup.py \ | 189 | $(QUIET_GEN)CFLAGS='$(BASIC_CFLAGS)' $(PYTHON_WORD) util/setup.py \ |
190 | --quiet build_ext; \ | 190 | --quiet build_ext; \ |
191 | mkdir -p $(OUTPUT)python && \ | 191 | mkdir -p $(OUTPUT)python && \ |
@@ -446,20 +446,6 @@ BUILTIN_OBJS += $(OUTPUT)builtin-inject.o | |||
446 | 446 | ||
447 | PERFLIBS = $(LIB_FILE) $(LIBTRACEEVENT) | 447 | PERFLIBS = $(LIB_FILE) $(LIBTRACEEVENT) |
448 | 448 | ||
449 | # Files needed for the python binding, perf.so | ||
450 | # pyrf is just an internal name needed for all those wrappers. | ||
451 | # This has to be in sync with what is in the 'sources' variable in | ||
452 | # tools/perf/util/setup.py | ||
453 | |||
454 | PYRF_OBJS += $(OUTPUT)util/cpumap.o | ||
455 | PYRF_OBJS += $(OUTPUT)util/ctype.o | ||
456 | PYRF_OBJS += $(OUTPUT)util/evlist.o | ||
457 | PYRF_OBJS += $(OUTPUT)util/evsel.o | ||
458 | PYRF_OBJS += $(OUTPUT)util/python.o | ||
459 | PYRF_OBJS += $(OUTPUT)util/thread_map.o | ||
460 | PYRF_OBJS += $(OUTPUT)util/util.o | ||
461 | PYRF_OBJS += $(OUTPUT)util/xyarray.o | ||
462 | |||
463 | # | 449 | # |
464 | # Platform specific tweaks | 450 | # Platform specific tweaks |
465 | # | 451 | # |