mirror of
https://github.com/reactos/reactos.git
synced 2025-08-10 07:52:58 +00:00
* Build freetype, win32k, and video drivers
* Generate module.spec.def, not module.def svn path=/branches/xmlbuildsystem/; revision=13135
This commit is contained in:
parent
6a6a71b2f1
commit
4b9c656dd5
17 changed files with 347 additions and 10 deletions
|
@ -628,11 +628,11 @@ MingwModuleHandler::GenerateWinebuildCommands ( const Module& module,
|
|||
{
|
||||
string basename = GetBasename ( sourceFilename );
|
||||
fprintf ( fMakefile,
|
||||
"%s.def: %s\n",
|
||||
"%s.spec.def: %s\n",
|
||||
basename.c_str (),
|
||||
sourceFilename.c_str () );
|
||||
fprintf ( fMakefile,
|
||||
"\t%s --def=%s -o %s.def\n",
|
||||
"\t%s --def=%s -o %s.spec.def\n",
|
||||
"${winebuild}",
|
||||
sourceFilename.c_str (),
|
||||
basename.c_str () );
|
||||
|
@ -1126,7 +1126,7 @@ string
|
|||
MingwModuleHandler::GetSpecObjectDependencies ( const string& filename ) const
|
||||
{
|
||||
string basename = GetBasename ( filename );
|
||||
return basename + ".def" + " " + basename + ".stubs.c";
|
||||
return basename + ".spec.def" + " " + basename + ".stubs.c";
|
||||
}
|
||||
|
||||
string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue