* Build freetype, win32k, and video drivers

* Generate module.spec.def, not module.def


svn path=/branches/xmlbuildsystem/; revision=13135
This commit is contained in:
Casper Hornstrup 2005-01-19 19:49:57 +00:00
parent 6a6a71b2f1
commit 4b9c656dd5
17 changed files with 347 additions and 10 deletions

View file

@ -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