From eb5f071a95cfae162e3e488be499ec44b8a6dd2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Fri, 7 Mar 2008 15:06:06 +0000 Subject: [PATCH] Precompiled headers can depend of generated files svn path=/trunk/; revision=32601 --- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index 2095315155f..47af36fd2f0 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -1820,9 +1820,10 @@ MingwModuleHandler::GenerateObjectFileTargets () if ( rpcDependencies.size () > 0 ) dependencies += " " + v2s ( backend, rpcDependencies, 5 ); fprintf ( fMakefile, - "%s: %s | %s\n", + "%s: %s ${%s_precondition} | %s\n", backend->GetFullName ( *pchFilename ).c_str(), dependencies.c_str(), + module.name.c_str (), backend->GetFullPath ( *pchFilename ).c_str() ); fprintf ( fMakefile, "\t$(ECHO_PCH)\n" ); fprintf ( fMakefile,