Output PCH, not dependencies.

svn path=/trunk/; revision=45279
This commit is contained in:
Dmitry Gorbachev 2010-01-27 02:29:36 +00:00
parent 502cd1c9c9
commit e6111d4302

View file

@ -125,7 +125,7 @@ else
${call RBUILD_intermediate_dir,$(2)}$$(SEP).gch_$(1)$$(SEP)$(notdir $(2)).gch: $(2) $(3) | ${call RBUILD_intermediate_dir,$(2)}$$(SEP).gch_$(1)
$$(ECHO_PCH)
$${gcc} -MF $$@ ${call RBUILD_cflags,$(1),$(4)} -x c-header -M -MP -MT $$@ $$<
$${gcc} -o $$@ ${call RBUILD_cflags,$(1),$(4)} -x c-header $$<
endif
@ -152,7 +152,7 @@ else
${call RBUILD_intermediate_dir,$(2)}$$(SEP).gch_$(1)$$(SEP)$(notdir $(2)).gch: $(2) $(3) | ${call RBUILD_intermediate_dir,$(2)}$$(SEP).gch_$(1)
$$(ECHO_PCH)
$${gpp} -MF $$@ ${call RBUILD_cxxflags,$(1),$(4)} -x c++-header -M -MP -MT $$@ $$<
$${gpp} -o $$@ ${call RBUILD_cxxflags,$(1),$(4)} -x c++-header $$<
endif