aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/Makefile.build
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Makefile.build')
-rw-r--r--scripts/Makefile.build6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index 12821d9eae85..13f606ba2a3b 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -152,11 +152,11 @@ cmd_cc_s_c = $(CC) $(c_flags) $(DISABLE_LTO) -fverbose-asm -S -o $@ $<
152$(obj)/%.s: $(src)/%.c FORCE 152$(obj)/%.s: $(src)/%.c FORCE
153 $(call if_changed_dep,cc_s_c) 153 $(call if_changed_dep,cc_s_c)
154 154
155quiet_cmd_cc_i_c = CPP $(quiet_modtag) $@ 155quiet_cmd_cpp_i_c = CPP $(quiet_modtag) $@
156cmd_cc_i_c = $(CPP) $(c_flags) -o $@ $< 156cmd_cpp_i_c = $(CPP) $(c_flags) -o $@ $<
157 157
158$(obj)/%.i: $(src)/%.c FORCE 158$(obj)/%.i: $(src)/%.c FORCE
159 $(call if_changed_dep,cc_i_c) 159 $(call if_changed_dep,cpp_i_c)
160 160
161cmd_gensymtypes = \ 161cmd_gensymtypes = \
162 $(CPP) -D__GENKSYMS__ $(c_flags) $< | \ 162 $(CPP) -D__GENKSYMS__ $(c_flags) $< | \