diff options
author | Namhyung Kim <namhyung@gmail.com> | 2012-04-04 03:14:26 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-04-11 16:16:40 -0400 |
commit | aca7a94d6a59d6bf2600768e752f971c6cc0ab57 (patch) | |
tree | 801b40ba5cb8aba9d3d0842a3d87c741b97f58f2 /tools/perf/Makefile | |
parent | a31b7cc083b1d3d15bd475729fc4471685ebc5f6 (diff) |
perf tools: Move UI bits to tools/perf/ui directory
Move those files to new directory in order to be prepared to further UI
work. Makefile and header file pathes are adjusted accordingly.
Signed-off-by: Namhyung Kim <namhyung.kim@lge.com>
Suggested-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Acked-by: Pekka Enberg <penberg@kernel.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl
Link: http://lkml.kernel.org/r/1333523666-12057-1-git-send-email-namhyung.kim@lge.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r-- | tools/perf/Makefile | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile index b28b61042fa8..af6ccf8d1499 100644 --- a/tools/perf/Makefile +++ b/tools/perf/Makefile | |||
@@ -473,22 +473,22 @@ else | |||
473 | # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h | 473 | # Fedora has /usr/include/slang/slang.h, but ubuntu /usr/include/slang.h |
474 | BASIC_CFLAGS += -I/usr/include/slang | 474 | BASIC_CFLAGS += -I/usr/include/slang |
475 | EXTLIBS += -lnewt -lslang | 475 | EXTLIBS += -lnewt -lslang |
476 | LIB_OBJS += $(OUTPUT)util/ui/setup.o | 476 | LIB_OBJS += $(OUTPUT)ui/setup.o |
477 | LIB_OBJS += $(OUTPUT)util/ui/browser.o | 477 | LIB_OBJS += $(OUTPUT)ui/browser.o |
478 | LIB_OBJS += $(OUTPUT)util/ui/browsers/annotate.o | 478 | LIB_OBJS += $(OUTPUT)ui/browsers/annotate.o |
479 | LIB_OBJS += $(OUTPUT)util/ui/browsers/hists.o | 479 | LIB_OBJS += $(OUTPUT)ui/browsers/hists.o |
480 | LIB_OBJS += $(OUTPUT)util/ui/browsers/map.o | 480 | LIB_OBJS += $(OUTPUT)ui/browsers/map.o |
481 | LIB_OBJS += $(OUTPUT)util/ui/helpline.o | 481 | LIB_OBJS += $(OUTPUT)ui/helpline.o |
482 | LIB_OBJS += $(OUTPUT)util/ui/progress.o | 482 | LIB_OBJS += $(OUTPUT)ui/progress.o |
483 | LIB_OBJS += $(OUTPUT)util/ui/util.o | 483 | LIB_OBJS += $(OUTPUT)ui/util.o |
484 | LIB_H += util/ui/browser.h | 484 | LIB_H += ui/browser.h |
485 | LIB_H += util/ui/browsers/map.h | 485 | LIB_H += ui/browsers/map.h |
486 | LIB_H += util/ui/helpline.h | 486 | LIB_H += ui/helpline.h |
487 | LIB_H += util/ui/keysyms.h | 487 | LIB_H += ui/keysyms.h |
488 | LIB_H += util/ui/libslang.h | 488 | LIB_H += ui/libslang.h |
489 | LIB_H += util/ui/progress.h | 489 | LIB_H += ui/progress.h |
490 | LIB_H += util/ui/util.h | 490 | LIB_H += ui/util.h |
491 | LIB_H += util/ui/ui.h | 491 | LIB_H += ui/ui.h |
492 | endif | 492 | endif |
493 | endif | 493 | endif |
494 | 494 | ||
@@ -755,16 +755,16 @@ $(OUTPUT)util/exec_cmd.o: util/exec_cmd.c $(OUTPUT)PERF-CFLAGS | |||
755 | $(OUTPUT)util/config.o: util/config.c $(OUTPUT)PERF-CFLAGS | 755 | $(OUTPUT)util/config.o: util/config.c $(OUTPUT)PERF-CFLAGS |
756 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $< | 756 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DETC_PERFCONFIG='"$(ETC_PERFCONFIG_SQ)"' $< |
757 | 757 | ||
758 | $(OUTPUT)util/ui/browser.o: util/ui/browser.c $(OUTPUT)PERF-CFLAGS | 758 | $(OUTPUT)ui/browser.o: ui/browser.c $(OUTPUT)PERF-CFLAGS |
759 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< | 759 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< |
760 | 760 | ||
761 | $(OUTPUT)util/ui/browsers/annotate.o: util/ui/browsers/annotate.c $(OUTPUT)PERF-CFLAGS | 761 | $(OUTPUT)ui/browsers/annotate.o: ui/browsers/annotate.c $(OUTPUT)PERF-CFLAGS |
762 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< | 762 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< |
763 | 763 | ||
764 | $(OUTPUT)util/ui/browsers/hists.o: util/ui/browsers/hists.c $(OUTPUT)PERF-CFLAGS | 764 | $(OUTPUT)ui/browsers/hists.o: ui/browsers/hists.c $(OUTPUT)PERF-CFLAGS |
765 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< | 765 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< |
766 | 766 | ||
767 | $(OUTPUT)util/ui/browsers/map.o: util/ui/browsers/map.c $(OUTPUT)PERF-CFLAGS | 767 | $(OUTPUT)ui/browsers/map.o: ui/browsers/map.c $(OUTPUT)PERF-CFLAGS |
768 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< | 768 | $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -DENABLE_SLFUTURE_CONST $< |
769 | 769 | ||
770 | $(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS | 770 | $(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS |