Output PCH, not dependencies.
authorDmitry Gorbachev <gorbachev@reactos.org>
Wed, 27 Jan 2010 02:29:36 +0000 (02:29 +0000)
committerDmitry Gorbachev <gorbachev@reactos.org>
Wed, 27 Jan 2010 02:29:36 +0000 (02:29 +0000)
svn path=/trunk/; revision=45279

reactos/tools/rbuild/backend/mingw/compilers/gcc.mak

index c8c09bd..ad4aebf 100644 (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