mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Clean proxy makefiles on 'make clean'
svn path=/trunk/; revision=15810
This commit is contained in:
parent
5c0d2bc84c
commit
012786bd8f
1 changed files with 8 additions and 1 deletions
|
@ -1732,8 +1732,15 @@ MingwModuleHandler::GenerateRules ()
|
||||||
string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
|
string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
|
||||||
string ar = ( module.host == HostTrue ? "${host_ar}" : "${ar}" );
|
string ar = ( module.host == HostTrue ? "${host_ar}" : "${ar}" );
|
||||||
|
|
||||||
string targetMacro = GetTargetMacro ( module );
|
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 );
|
CLEAN_FILE ( targetMacro );
|
||||||
|
|
||||||
// generate phony target for module name
|
// generate phony target for module name
|
||||||
|
|
Loading…
Reference in a new issue