aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile.perf
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/Makefile.perf')
-rw-r--r--tools/perf/Makefile.perf10
1 files changed, 8 insertions, 2 deletions
diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf
index 77b153fa23a5..5fedd6946f32 100644
--- a/tools/perf/Makefile.perf
+++ b/tools/perf/Makefile.perf
@@ -712,9 +712,15 @@ $(patsubst perf-%,%.o,$(PROGRAMS)): $(LIB_H) $(wildcard */*.h)
712# we depend the various files onto their directories. 712# we depend the various files onto their directories.
713DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(GTK_OBJS) 713DIRECTORY_DEPS = $(LIB_OBJS) $(BUILTIN_OBJS) $(GTK_OBJS)
714DIRECTORY_DEPS += $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h 714DIRECTORY_DEPS += $(OUTPUT)PERF-VERSION-FILE $(OUTPUT)common-cmds.h
715$(DIRECTORY_DEPS): | $(sort $(dir $(DIRECTORY_DEPS))) 715# no need to add flex objects, because they depend on bison ones
716DIRECTORY_DEPS += $(OUTPUT)util/parse-events-bison.c
717DIRECTORY_DEPS += $(OUTPUT)util/pmu-bison.c
718
719OUTPUT_DIRECTORIES := $(sort $(dir $(DIRECTORY_DEPS)))
720
721$(DIRECTORY_DEPS): | $(OUTPUT_DIRECTORIES)
716# In the second step, we make a rule to actually create these directories 722# In the second step, we make a rule to actually create these directories
717$(sort $(dir $(DIRECTORY_DEPS))): 723$(OUTPUT_DIRECTORIES):
718 $(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null 724 $(QUIET_MKDIR)$(MKDIR) -p $@ 2>/dev/null
719 725
720$(LIB_FILE): $(LIB_OBJS) 726$(LIB_FILE): $(LIB_OBJS)