aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index dfc80289d7ff..e07fbd838749 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -276,6 +276,7 @@ LIB_H += util/build-id.h
276LIB_H += util/debug.h 276LIB_H += util/debug.h
277LIB_H += util/debugfs.h 277LIB_H += util/debugfs.h
278LIB_H += util/sysfs.h 278LIB_H += util/sysfs.h
279LIB_H += util/pmu.h
279LIB_H += util/event.h 280LIB_H += util/event.h
280LIB_H += util/evsel.h 281LIB_H += util/evsel.h
281LIB_H += util/evlist.h 282LIB_H += util/evlist.h
@@ -323,6 +324,7 @@ LIB_OBJS += $(OUTPUT)util/config.o
323LIB_OBJS += $(OUTPUT)util/ctype.o 324LIB_OBJS += $(OUTPUT)util/ctype.o
324LIB_OBJS += $(OUTPUT)util/debugfs.o 325LIB_OBJS += $(OUTPUT)util/debugfs.o
325LIB_OBJS += $(OUTPUT)util/sysfs.o 326LIB_OBJS += $(OUTPUT)util/sysfs.o
327LIB_OBJS += $(OUTPUT)util/pmu.o
326LIB_OBJS += $(OUTPUT)util/environment.o 328LIB_OBJS += $(OUTPUT)util/environment.o
327LIB_OBJS += $(OUTPUT)util/event.o 329LIB_OBJS += $(OUTPUT)util/event.o
328LIB_OBJS += $(OUTPUT)util/evlist.o 330LIB_OBJS += $(OUTPUT)util/evlist.o
@@ -361,6 +363,8 @@ LIB_OBJS += $(OUTPUT)util/thread_map.o
361LIB_OBJS += $(OUTPUT)util/trace-event-parse.o 363LIB_OBJS += $(OUTPUT)util/trace-event-parse.o
362LIB_OBJS += $(OUTPUT)util/parse-events-flex.o 364LIB_OBJS += $(OUTPUT)util/parse-events-flex.o
363LIB_OBJS += $(OUTPUT)util/parse-events-bison.o 365LIB_OBJS += $(OUTPUT)util/parse-events-bison.o
366LIB_OBJS += $(OUTPUT)util/pmu-flex.o
367LIB_OBJS += $(OUTPUT)util/pmu-bison.o
364LIB_OBJS += $(OUTPUT)util/trace-event-read.o 368LIB_OBJS += $(OUTPUT)util/trace-event-read.o
365LIB_OBJS += $(OUTPUT)util/trace-event-info.o 369LIB_OBJS += $(OUTPUT)util/trace-event-info.o
366LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o 370LIB_OBJS += $(OUTPUT)util/trace-event-scripting.o
@@ -773,6 +777,9 @@ $(OUTPUT)util/rbtree.o: ../../lib/rbtree.c $(OUTPUT)PERF-CFLAGS
773$(OUTPUT)util/parse-events-flex.o: util/parse-events-flex.c $(OUTPUT)PERF-CFLAGS 777$(OUTPUT)util/parse-events-flex.o: util/parse-events-flex.c $(OUTPUT)PERF-CFLAGS
774 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -Wno-redundant-decls -Wno-switch-default -Wno-unused-function $< 778 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -Wno-redundant-decls -Wno-switch-default -Wno-unused-function $<
775 779
780$(OUTPUT)util/pmu-flex.o: util/pmu-flex.c $(OUTPUT)PERF-CFLAGS
781 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) -Wno-redundant-decls -Wno-switch-default -Wno-unused-function $<
782
776$(OUTPUT)util/scripting-engines/trace-event-perl.o: util/scripting-engines/trace-event-perl.c $(OUTPUT)PERF-CFLAGS 783$(OUTPUT)util/scripting-engines/trace-event-perl.o: util/scripting-engines/trace-event-perl.c $(OUTPUT)PERF-CFLAGS
777 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $< 784 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $(PERL_EMBED_CCOPTS) -Wno-redundant-decls -Wno-strict-prototypes -Wno-unused-parameter -Wno-shadow $<
778 785
@@ -810,6 +817,7 @@ help:
810 @echo ' info - make GNU info documentation (access with info <foo>)' 817 @echo ' info - make GNU info documentation (access with info <foo>)'
811 @echo ' pdf - make pdf documentation' 818 @echo ' pdf - make pdf documentation'
812 @echo ' event-parser - make event parser code' 819 @echo ' event-parser - make event parser code'
820 @echo ' pmu-parser - make pmu format parser code'
813 @echo ' TAGS - use etags to make tag information for source browsing' 821 @echo ' TAGS - use etags to make tag information for source browsing'
814 @echo ' tags - use ctags to make tag information for source browsing' 822 @echo ' tags - use ctags to make tag information for source browsing'
815 @echo ' cscope - use cscope to make interactive browsing database' 823 @echo ' cscope - use cscope to make interactive browsing database'
@@ -863,6 +871,10 @@ event-parser:
863 $(QUIET_BISON)$(BISON) -v util/parse-events.y -d -o util/parse-events-bison.c 871 $(QUIET_BISON)$(BISON) -v util/parse-events.y -d -o util/parse-events-bison.c
864 $(QUIET_FLEX)$(FLEX) --header-file=util/parse-events-flex.h -t util/parse-events.l > util/parse-events-flex.c 872 $(QUIET_FLEX)$(FLEX) --header-file=util/parse-events-flex.h -t util/parse-events.l > util/parse-events-flex.c
865 873
874pmu-parser:
875 $(QUIET_BISON)$(BISON) -v util/pmu.y -d -o util/pmu-bison.c
876 $(QUIET_FLEX)$(FLEX) --header-file=util/pmu-flex.h -t util/pmu.l > util/pmu-flex.c
877
866### Detect prefix changes 878### Detect prefix changes
867TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\ 879TRACK_CFLAGS = $(subst ','\'',$(ALL_CFLAGS)):\
868 $(bindir_SQ):$(perfexecdir_SQ):$(template_dir_SQ):$(prefix_SQ) 880 $(bindir_SQ):$(perfexecdir_SQ):$(template_dir_SQ):$(prefix_SQ)