Fix the cheerleader, fix the build

svn path=/trunk/; revision=41372
This commit is contained in:
KJK::Hyperion 2009-06-10 18:41:50 +00:00
parent a0aa8829fc
commit 36e771184a
2 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@ BUILTIN_CXXFLAGS+= -fno-optimize-sibling-calls
#(module, source, dependencies, cflags, output)
define RBUILD_DEPENDS
$(5): $(2) $(3) | ${call RBUILD_dir,$(2)}
$(5): $(2) $(3) | ${call RBUILD_dir,$(5)}
$$(ECHO_DEPENDS)
$${gcc} -xc -MF $$@ $(4) -M -MP -MT $$@ $$<
@ -24,7 +24,7 @@ endef
#(module, source, dependencies, cflags, output)
define RBUILD_CXX_DEPENDS
$(5): $(2) $(3) | ${call RBUILD_dir,$(2)}
$(5): $(2) $(3) | ${call RBUILD_dir,$(5)}
$$(ECHO_DEPENDS)
$${gpp} -MF $$@ $(4) -M -MP -MT $$@ $$<
@ -33,7 +33,7 @@ endef
#(module, source, dependencies, cflags, output)
define RBUILD_CPP
$(5): $(2) $(3) | ${call RBUILD_dir,$(2)}
$(5): $(2) $(3) | ${call RBUILD_dir,$(5)}
$$(ECHO_CPP)
$${gcc} -xc -E $(4) $$< > $$@
@ -42,7 +42,7 @@ endef
#(module, source, dependencies, cflags, output)
define RBUILD_CXX_CPP
$(5): $(2) $(3) | ${call RBUILD_dir,$(2)}
$(5): $(2) $(3) | ${call RBUILD_dir,$(5)}
$$(ECHO_CPP)
$${gpp} -E $(4) $$< > $$@

View file

@ -26,7 +26,7 @@ RBUILD_CXX_DEPENDS=${call RBUILD_CL_DEPENDS,$(1),$(2),$(3),$(4) /TP,$(5)}
#(module, source, dependencies, cflags, output)
define RBUILD_CL_CPP
$(5): $(2) $(3) $$(RBUILD_HELPER_TARGET) | ${call RBUILD_dir,$(2)}
$(5): $(2) $(3) $$(RBUILD_HELPER_TARGET) | ${call RBUILD_dir,$(5)}
$$(ECHO_CPP)
$${cl} /E $(4) $$< > $$@