mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Don't clean alias modules
svn path=/trunk/; revision=16827
This commit is contained in:
parent
f15bd378aa
commit
509048a223
1 changed files with 3 additions and 0 deletions
|
@ -489,6 +489,9 @@ MingwModuleHandler::GetReferencedObjectLibraryModuleCleanTargets ( vector<string
|
|||
void
|
||||
MingwModuleHandler::GenerateCleanTarget () const
|
||||
{
|
||||
if ( module.type == Alias )
|
||||
return;
|
||||
|
||||
fprintf ( fMakefile,
|
||||
".PHONY: %s_clean\n",
|
||||
module.name.c_str() );
|
||||
|
|
Loading…
Reference in a new issue