mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
Fix the cheerleader, fix the build
svn path=/trunk/; revision=41372
This commit is contained in:
parent
a0aa8829fc
commit
36e771184a
2 changed files with 5 additions and 5 deletions
|
@ -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) $$< > $$@
|
||||
|
||||
|
|
|
@ -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) $$< > $$@
|
||||
|
||||
|
|
Loading…
Reference in a new issue