aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/perf/Makefile')
-rw-r--r--tools/perf/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/perf/Makefile b/tools/perf/Makefile
index fa043404479e..bd328554aec2 100644
--- a/tools/perf/Makefile
+++ b/tools/perf/Makefile
@@ -727,10 +727,14 @@ $(OUTPUT)perf.o perf.spec \
727 727
728$(OUTPUT)%.o: %.c $(OUTPUT)PERF-CFLAGS 728$(OUTPUT)%.o: %.c $(OUTPUT)PERF-CFLAGS
729 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $< 729 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
730$(OUTPUT)%.i: %.c $(OUTPUT)PERF-CFLAGS
731 $(QUIET_CC)$(CC) -o $@ -E $(ALL_CFLAGS) $<
730$(OUTPUT)%.s: %.c $(OUTPUT)PERF-CFLAGS 732$(OUTPUT)%.s: %.c $(OUTPUT)PERF-CFLAGS
731 $(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $< 733 $(QUIET_CC)$(CC) -o $@ -S $(ALL_CFLAGS) $<
732$(OUTPUT)%.o: %.S 734$(OUTPUT)%.o: %.S
733 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $< 735 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
736$(OUTPUT)%.s: %.S
737 $(QUIET_CC)$(CC) -o $@ -E $(ALL_CFLAGS) $<
734 738
735$(OUTPUT)util/exec_cmd.o: util/exec_cmd.c $(OUTPUT)PERF-CFLAGS 739$(OUTPUT)util/exec_cmd.o: util/exec_cmd.c $(OUTPUT)PERF-CFLAGS
736 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \ 740 $(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) \