Clean proxy makefiles on 'make clean' Modified: trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp _____
Modified: trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp --- trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp 2005-06-05 16:32:33 UTC (rev 15809) +++ trunk/reactos/tools/rbuild/backend/mingw/modulehandler.cpp 2005-06-05 16:47:42 UTC (rev 15810) @@ -1732,8 +1732,15 @@
string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" ); string ar = ( module.host == HostTrue ? "${host_ar}" : "${ar}" );
+ if ( module.name != "zlib" ) /* Avoid make warning */ + { + string proxyMakefile = PassThruCacheDirectory ( + NormalizeFilename ( module.GetBasePath () + SSEP + "makefile" ), + backend->outputDirectory ); + CLEAN_FILE ( proxyMakefile ); + } + string targetMacro = GetTargetMacro ( module ); - CLEAN_FILE ( targetMacro );
// generate phony target for module name