diff options
author | Jiri Olsa <jolsa@kernel.org> | 2014-12-29 18:16:01 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-02-12 09:47:04 -0500 |
commit | 3b939a631b53bdb1bf6826fca2a330b16e995fc2 (patch) | |
tree | e906a2473b19520c4ac934c7bc33b0c7c49926cf | |
parent | b2e45c322e0298652fc05e65c671b2b88d30ae31 (diff) |
perf build: Add ui objects building
Move the ui objects building under build framework to be included in the
libperf build object.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>
Tested-by: Will Deacon <will.deacon@arm.com>
Cc: Alexis Berlemont <alexis.berlemont@gmail.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-re5vuat8uu396n7hyor9b5ve@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/Build | 1 | ||||
-rw-r--r-- | tools/perf/Makefile.perf | 10 | ||||
-rw-r--r-- | tools/perf/config/Makefile | 1 | ||||
-rw-r--r-- | tools/perf/ui/Build | 8 |
4 files changed, 10 insertions, 10 deletions
diff --git a/tools/perf/Build b/tools/perf/Build index 170e4563bb24..e84ced325147 100644 --- a/tools/perf/Build +++ b/tools/perf/Build | |||
@@ -34,3 +34,4 @@ CFLAGS_builtin-timechart.o += $(paths) | |||
34 | 34 | ||
35 | libperf-y += util/ | 35 | libperf-y += util/ |
36 | libperf-y += arch/ | 36 | libperf-y += arch/ |
37 | libperf-y += ui/ | ||
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf index 96e3cdc7f89c..c658fa6dc81e 100644 --- a/tools/perf/Makefile.perf +++ b/tools/perf/Makefile.perf | |||
@@ -327,13 +327,6 @@ LIB_H += util/data.h | |||
327 | LIB_H += util/kvm-stat.h | 327 | LIB_H += util/kvm-stat.h |
328 | LIB_H += util/thread-stack.h | 328 | LIB_H += util/thread-stack.h |
329 | 329 | ||
330 | LIB_OBJS += $(OUTPUT)ui/setup.o | ||
331 | LIB_OBJS += $(OUTPUT)ui/helpline.o | ||
332 | LIB_OBJS += $(OUTPUT)ui/progress.o | ||
333 | LIB_OBJS += $(OUTPUT)ui/util.o | ||
334 | LIB_OBJS += $(OUTPUT)ui/hist.o | ||
335 | LIB_OBJS += $(OUTPUT)ui/stdio/hist.o | ||
336 | |||
337 | PERFLIBS = $(LIB_FILE) $(LIBAPIKFS) $(LIBTRACEEVENT) | 330 | PERFLIBS = $(LIB_FILE) $(LIBAPIKFS) $(LIBTRACEEVENT) |
338 | 331 | ||
339 | # We choose to avoid "if .. else if .. else .. endif endif" | 332 | # We choose to avoid "if .. else if .. else .. endif endif" |
@@ -491,9 +484,6 @@ $(OUTPUT)%.o: %.S | |||
491 | $(OUTPUT)%.s: %.S | 484 | $(OUTPUT)%.s: %.S |
492 | $(QUIET_CC)$(CC) -o $@ -E $(CFLAGS) $< | 485 | $(QUIET_CC)$(CC) -o $@ -E $(CFLAGS) $< |
493 | 486 | ||
494 | $(OUTPUT)ui/setup.o: ui/setup.c $(OUTPUT)PERF-CFLAGS | ||
495 | $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) -DLIBDIR='"$(libdir_SQ)"' $< | ||
496 | |||
497 | $(OUTPUT)ui/browser.o: ui/browser.c $(OUTPUT)PERF-CFLAGS | 487 | $(OUTPUT)ui/browser.o: ui/browser.c $(OUTPUT)PERF-CFLAGS |
498 | $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) -DENABLE_SLFUTURE_CONST $< | 488 | $(QUIET_CC)$(CC) -o $@ -c $(CFLAGS) -DENABLE_SLFUTURE_CONST $< |
499 | 489 | ||
diff --git a/tools/perf/config/Makefile b/tools/perf/config/Makefile index e55d811e633f..07391389aa4c 100644 --- a/tools/perf/config/Makefile +++ b/tools/perf/config/Makefile | |||
@@ -844,3 +844,4 @@ $(call detected_var,mandir_SQ) | |||
844 | $(call detected_var,ETC_PERFCONFIG_SQ) | 844 | $(call detected_var,ETC_PERFCONFIG_SQ) |
845 | $(call detected_var,prefix_SQ) | 845 | $(call detected_var,prefix_SQ) |
846 | $(call detected_var,perfexecdir_SQ) | 846 | $(call detected_var,perfexecdir_SQ) |
847 | $(call detected_var,LIBDIR) | ||
diff --git a/tools/perf/ui/Build b/tools/perf/ui/Build new file mode 100644 index 000000000000..077b6a448ddc --- /dev/null +++ b/tools/perf/ui/Build | |||
@@ -0,0 +1,8 @@ | |||
1 | libperf-y += setup.o | ||
2 | libperf-y += helpline.o | ||
3 | libperf-y += progress.o | ||
4 | libperf-y += util.o | ||
5 | libperf-y += hist.o | ||
6 | libperf-y += stdio/hist.o | ||
7 | |||
8 | CFLAGS_setup.o += -DLIBDIR="BUILD_STR($(LIBDIR))" | ||