Fix a typo
[reactos.git] / reactos / tools / rbuild / backend / mingw / modulehandler.cpp
index 2be419d..2a06f29 100644 (file)
@@ -18,6 +18,7 @@
  */
 #include "../../pch.h"
 #include <assert.h>
+#include <algorithm>
 
 #include "../../rbuild.h"
 #include "mingw.h"
@@ -29,6 +30,7 @@ using std::string;
 using std::vector;
 
 #define CLEAN_FILE(f) clean_files.push_back ( (f).name.length () > 0 ? backend->GetFullName ( f ) : backend->GetFullPath ( f ) );
+#define IsStaticLibrary( module ) ( ( module.type == StaticLibrary ) || ( module.type == HostStaticLibrary ) )
 
 MingwBackend*
 MingwModuleHandler::backend = NULL;
@@ -169,6 +171,9 @@ MingwModuleHandler::InstanciateHandler (
                case StaticLibrary:
                        handler = new MingwStaticLibraryModuleHandler ( module );
                        break;
+               case HostStaticLibrary:
+                       handler = new MingwHostStaticLibraryModuleHandler ( module );
+                       break;
                case ObjectLibrary:
                        handler = new MingwObjectLibraryModuleHandler ( module );
                        break;
@@ -185,6 +190,7 @@ MingwModuleHandler::InstanciateHandler (
                case Win32GUI:
                        handler = new MingwWin32GUIModuleHandler ( module );
                        break;
+               case KeyboardLayout:
                case KernelModeDLL:
                        handler = new MingwKernelModeDLLModuleHandler ( module );
                        break;
@@ -236,9 +242,15 @@ MingwModuleHandler::InstanciateHandler (
                case Alias:
                        handler = new MingwAliasModuleHandler ( module );
                        break;
+               case MessageHeader:
+                       handler = new MingwMessageHeaderModuleHandler (module);
+                       break;
                case IdlHeader:
                        handler = new MingwIdlHeaderModuleHandler ( module );
                        break;
+               case Cabinet:
+                       handler = new MingwCabinetModuleHandler ( module );
+                       break;
                case EmbeddedTypeLib:
                        handler = new MingwEmbeddedTypeLibModuleHandler ( module );
                        break;
@@ -269,49 +281,6 @@ MingwModuleHandler::GetBasename ( const string& filename ) const
        return "";
 }
 
-/* caller needs to delete the returned object */
-const FileLocation*
-MingwModuleHandler::GetActualSourceFilename (
-       const FileLocation* file ) const
-{
-       string filename = file->name;
-
-       string extension = GetExtension ( *file );
-       if ( extension == ".spec" || extension == ".SPEC" )
-       {
-               const FileLocation *objectFile = GetObjectFilename ( file, module, NULL );
-               FileLocation *sourceFile = new FileLocation (
-                       objectFile->directory,
-                       objectFile->relative_path,
-                       ReplaceExtension ( objectFile->name, ".c" ) );
-               delete objectFile;
-               return sourceFile;
-       }
-       else if ( ( extension == ".idl" || extension == ".IDL" ) &&
-                 ( module.type == RpcServer || module.type == RpcClient || module.type == RpcProxy ) )
-       {
-               const FileLocation *objectFile = GetObjectFilename ( file, module, NULL );
-               FileLocation *sourceFile = new FileLocation (
-                       objectFile->directory,
-                       objectFile->relative_path,
-                       ReplaceExtension ( objectFile->name, ".c" ) );
-               delete objectFile;
-               return sourceFile;
-       }
-       else if ( extension == ".mc" || extension == ".MC" )
-       {
-               const FileLocation *objectFile = GetObjectFilename ( file, module, NULL );
-               FileLocation *sourceFile = new FileLocation (
-                       objectFile->directory,
-                       objectFile->relative_path,
-                       ReplaceExtension ( objectFile->name, ".rc" ) );
-               delete objectFile;
-               return sourceFile;
-       }
-       else
-               return new FileLocation ( *file );
-}
-
 string
 MingwModuleHandler::GetExtraDependencies (
        const FileLocation *file ) const
@@ -333,7 +302,7 @@ MingwModuleHandler::GetExtraDependencies (
 
                string dependencies = backend->GetFullName ( *header );
                delete header;
-               return dependencies;
+               return " " + dependencies;
        }
        else
                return "";
@@ -351,14 +320,14 @@ MingwModuleHandler::GetCompilationUnitDependencies (
                const File& file = *compilationUnit.GetFiles ()[i];
                sourceFiles.push_back ( backend->GetFullName ( file.file ) );
        }
-       return v2s ( sourceFiles, 10 );
+       return string ( " " ) + v2s ( sourceFiles, 10 );
 }
 
 /* caller needs to delete the returned object */
 const FileLocation*
 MingwModuleHandler::GetModuleArchiveFilename () const
 {
-       if ( module.type == StaticLibrary )
+       if ( IsStaticLibrary ( module ) )
                return GetTargetFilename ( module, NULL );
        return new FileLocation ( IntermediateDirectory,
                                  module.output->relative_path,
@@ -386,6 +355,8 @@ MingwModuleHandler::ReferenceObjects (
                return true;
        if ( module.type == IdlHeader )
                return true;
+       if ( module.type == MessageHeader)
+               return true;
        return false;
 }
 
@@ -416,7 +387,7 @@ MingwModuleHandler::GetImportLibraryDependency (
                {
                        CompilationUnit& compilationUnit = *compilationUnits[i];
                        const FileLocation& compilationName = compilationUnit.GetFilename ();
-                       const FileLocation *objectFilename = GetObjectFilename ( &compilationName, importedModule, NULL );
+                       const FileLocation *objectFilename = GetObjectFilename ( &compilationName, importedModule );
                        if ( GetExtension ( *objectFilename ) == ".h" )
                                dep += ssprintf ( " $(%s_HEADERS)", importedModule.name.c_str () );
                        else if ( GetExtension ( *objectFilename ) == ".rc" )
@@ -474,62 +445,11 @@ MingwModuleHandler::GetModuleDependencies (
        }
 }
 
-void
-MingwModuleHandler::GetSourceFilenames ( vector<FileLocation>& list,
-                                         bool includeGeneratedFiles ) const
-{
-       size_t i;
-
-       const vector<CompilationUnit*>& compilationUnits = module.non_if_data.compilationUnits;
-       for ( i = 0; i < compilationUnits.size (); i++ )
-       {
-               if ( includeGeneratedFiles || !compilationUnits[i]->IsGeneratedFile () )
-               {
-                       const FileLocation& compilationName = compilationUnits[i]->GetFilename ();
-                       const FileLocation* sourceFileLocation = GetActualSourceFilename ( &compilationName );
-                       list.push_back ( *sourceFileLocation );
-                       delete sourceFileLocation;
-               }
-       }
-       // intentionally make a copy so that we can append more work in
-       // the middle of processing without having to go recursive
-       vector<If*> v = module.non_if_data.ifs;
-       for ( i = 0; i < v.size (); i++ )
-       {
-               size_t j;
-               If& rIf = *v[i];
-               // check for sub-ifs to add to list
-               const vector<If*>& ifs = rIf.data.ifs;
-               for ( j = 0; j < ifs.size (); j++ )
-                       v.push_back ( ifs[j] );
-               const vector<CompilationUnit*>& compilationUnits = rIf.data.compilationUnits;
-               for ( j = 0; j < compilationUnits.size (); j++ )
-               {
-                       CompilationUnit& compilationUnit = *compilationUnits[j];
-                       if ( includeGeneratedFiles || !compilationUnit.IsGeneratedFile () )
-                       {
-                               const FileLocation& compilationName = compilationUnit.GetFilename ();
-                               const FileLocation* sourceFileLocation = GetActualSourceFilename ( &compilationName );
-                               list.push_back ( *sourceFileLocation );
-                               delete sourceFileLocation;
-                       }
-               }
-       }
-}
-
-void
-MingwModuleHandler::GetSourceFilenamesWithoutGeneratedFiles (
-       vector<FileLocation>& list ) const
-{
-       GetSourceFilenames ( list, false );
-}
-
 /* caller needs to delete the returned object */
 const FileLocation*
 MingwModuleHandler::GetObjectFilename (
        const FileLocation* sourceFile,
-       const Module& module,
-       string_list* pclean_files ) const
+       const Module& module ) const
 {
        DirectoryLocation destination_directory;
        string newExtension;
@@ -566,12 +486,8 @@ MingwModuleHandler::GetObjectFilename (
                destination_directory,
                sourceFile->relative_path,
                ReplaceExtension ( sourceFile->name, newExtension ) );
+       PassThruCacheDirectory ( obj_file );
 
-       if ( pclean_files )
-       {
-               string_list& clean_files = *pclean_files;
-               CLEAN_FILE ( *obj_file );
-       }
        return obj_file;
 }
 
@@ -615,13 +531,15 @@ MingwModuleHandler::GenerateCleanTarget () const
        }
        fprintf ( fMakefile, " 2>$(NUL)\n" );
 
-       if ( module.name != "zlib" ) /* Avoid make warning */
+       if( ProxyMakefile::GenerateProxyMakefile(module) )
        {
                DirectoryLocation root;
+
                if ( backend->configuration.GenerateProxyMakefilesInSourceTree )
                        root = SourceDirectory;
                else
                        root = OutputDirectory;
+
                FileLocation proxyMakefile ( root,
                                             module.output->relative_path,
                                            "GNUmakefile" );
@@ -673,7 +591,7 @@ MingwModuleHandler::GetObjectFilenames ()
                if ( objectFilenames.size () > 0 )
                        objectFilenames += " ";
                const FileLocation& compilationName = compilationUnits[i]->GetFilename ();
-               const FileLocation *object_file = GetObjectFilename ( &compilationName, module, NULL );
+               const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
                objectFilenames += backend->GetFullName ( *object_file );
                delete object_file;
        }
@@ -772,11 +690,7 @@ MingwModuleHandler::GenerateCompilerParametersFromVector ( const vector<Compiler
        {
                CompilerFlag& compilerFlag = *compilerFlags[i];
                if ( compilerFlag.compiler == type )
-               {
-                       if ( parameters.length () > 0 )
-                               parameters += " ";
-                       parameters += compilerFlag.flag;
-               }
+                       parameters += " " + compilerFlag.flag;
        }
        return parameters;
 }
@@ -829,10 +743,9 @@ MingwModuleHandler::GenerateMacro (
        size_t i;
        bool generateAssignment;
 
+       generateAssignment = (use_pch && module.pch != NULL ) || data.includes.size () > 0 || data.defines.size () > 0;
        if ( generatingCompilerMacro )
-               generateAssignment = (use_pch && module.pch != NULL ) || data.includes.size () > 0 || data.defines.size () > 0 || data.compilerFlags.size () > 0;
-       else
-               generateAssignment = (use_pch && module.pch != NULL ) || data.includes.size () > 0 || data.defines.size () > 0;
+               generateAssignment |= data.compilerFlags.size () > 0;
        if ( generateAssignment )
        {
                fprintf ( fMakefile,
@@ -852,12 +765,12 @@ MingwModuleHandler::GenerateMacro (
 
        if ( generatingCompilerMacro )
        {
-               string compilerParameters = GenerateCompilerParametersFromVector ( data.compilerFlags , CompilerTypeDontCare );
+               string compilerParameters = GenerateCompilerParametersFromVector ( data.compilerFlags, CompilerTypeDontCare );
                if ( compilerParameters.size () > 0 )
                {
                        fprintf (
                                fMakefile,
-                               " %s",
+                               "%s",
                                compilerParameters.c_str () );
                }
        }
@@ -1094,7 +1007,7 @@ MingwModuleHandler::GenerateObjectMacros (
                        if ( compilationUnit.IsFirstFile () )
                        {
                                const FileLocation& compilationName = compilationUnit.GetFilename ();
-                               const FileLocation *object_file = GetObjectFilename ( &compilationName, module, NULL );
+                               const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
                                fprintf ( fMakefile,
                                        "%s := %s $(%s)\n",
                                        objectsMacro.c_str(),
@@ -1114,7 +1027,7 @@ MingwModuleHandler::GenerateObjectMacros (
                        if ( !compilationUnit.IsFirstFile () )
                        {
                                const FileLocation& compilationName = compilationUnit.GetFilename ();
-                               const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module, NULL );
+                               const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module );
                                if ( GetExtension ( *objectFilename ) == ".h" )
                                        headers.push_back ( objectFilename );
                                else if ( GetExtension ( *objectFilename ) == ".rc" )
@@ -1224,7 +1137,7 @@ MingwModuleHandler::GenerateObjectMacros (
        for ( i = 0; i < sourceCompilationUnits.size (); i++ )
        {
                const FileLocation& compilationName = sourceCompilationUnits[i]->GetFilename ();
-               const FileLocation *object_file = GetObjectFilename ( &compilationName, module, NULL );
+               const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
                fprintf (
                        fMakefile,
                        "%s += %s\n",
@@ -1242,25 +1155,38 @@ MingwModuleHandler::GetPrecompiledHeaderFilename () const
        if ( !module.pch || !use_pch )
                return NULL;
        return new FileLocation ( IntermediateDirectory,
-                                 module.pch->file.relative_path,
-                                 ReplaceExtension ( module.pch->file.name, "_" + module.name + ".gch" ) );
+                                 module.pch->file->relative_path,
+                                 module.pch->file->name + ".gch" );
 }
 
-Rule gasRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source) $(module_rbuild) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+Rule arRule1 ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a: $($(module_name)_OBJS) | $(INTERMEDIATE)$(SEP)$(source_dir)\n",
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).a",
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule arRule2 ( "\t$(ECHO_AR)\n"
+              "\t${ar} -rc $@ $($(module_name)_OBJS)\n",
+              NULL );
+Rule arHostRule2 ( "\t$(ECHO_AR)\n"
+                   "\t${host_ar} -rc $@ $($(module_name)_OBJS)\n",
+                   NULL );
+Rule gasRule ( "$(source): ${$(module_name)_precondition}\n"
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
                "\t$(ECHO_GAS)\n"
-               "\t${gcc} -x assembler-with-cpp -c $< -o $@ -D__ASM__ $($(module_name)_CFLAGS)\n",
+               "\t${gcc} -x assembler-with-cpp -o $@ -D__ASM__ $($(module_name)_CFLAGS) -c $<\n",
                "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o",
                "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
-Rule bootRule ( "$(module_output): $(source) $(module_rbuild) | $(OUTPUT)$(SEP)$(source_dir)\n"
+Rule bootRule ( "$(source): ${$(module_name)_precondition}\n"
+                "$(module_output): $(source)$(dependencies) | $(OUTPUT)$(SEP)$(source_dir)\n"
                 "\t$(ECHO_NASM)\n"
                 "\t$(Q)${nasm} -f win32 $< -o $@ $($(module_name)_NASMFLAGS)\n",
                 "$(OUTPUT)$(SEP)$(source_dir)$(SEP)", NULL );
-Rule nasmRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source) $(module_rbuild) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+Rule nasmRule ( "$(source): ${$(module_name)_precondition}\n"
+                "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
                 "\t$(ECHO_NASM)\n"
                 "\t$(Q)${nasm} -f win32 $< -o $@ $($(module_name)_NASMFLAGS)\n",
                 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o",
                 "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
-Rule windresRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).coff: $(source) $(module_rbuild) $(WRC_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+Rule windresRule ( "$(source): ${$(module_name)_precondition}\n"
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).coff: $(source)$(dependencies) $(WRC_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir) $(TEMPORARY)\n"
                    "\t$(ECHO_WRC)\n"
                    "\t${gcc} -xc -E -DRC_INVOKED ${$(module_name)_RCFLAGS} $(source) > $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).rci.tmp\n"
                    "\t$(Q)$(WRC_TARGET) ${$(module_name)_RCFLAGS} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).rci.tmp $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).res.tmp\n"
@@ -1269,65 +1195,120 @@ Rule windresRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)
                    "\t-@${rm} $(TEMPORARY)$(SEP)$(module_name).$(source_name_noext).res.tmp 2>$(NUL)\n",
                    "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).coff",
                    "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
-Rule wmcRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc $(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h: $(WMC_TARGET) $(source)\n"
+Rule wmcRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc $(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h: $(WMC_TARGET) $(source) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
                "\t$(ECHO_WMC)\n"
                "\t$(Q)$(WMC_TARGET) -i -H $(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h -o $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc $(source)\n",
-               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc", "$(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h", NULL );
-Rule winebuildRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).spec.def: $(source) $(module_rbuild) $(WINEBUILD_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).rc",
+               "$(INTERMEDIATE)$(SEP)include$(SEP)reactos$(SEP)$(source_name_noext).h",
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule winebuildRule ( "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).spec.def: $(source)$(dependencies) $(WINEBUILD_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
                      "\t$(ECHO_WINEBLD)\n"
-                     "\t$(Q)$(WINEBUILD_TARGET) -o $(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext).spec.def --def -E $(source_path)$(SEP)$(source_name_noext).spec\n"
+                     "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext).spec.def --def -E $(source)\n"
                      "$(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext).stubs.c: $(source_path)$(SEP)$(source_name_noext).spec $(WINEBUILD_TARGET)\n"
                      "\t$(ECHO_WINEBLD)\n"
-                     "\t$(Q)$(WINEBUILD_TARGET) -o $(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext).stubs.c --pedll $(source_path)$(SEP)$(source_name_noext).spec\n",
+                     "\t$(Q)$(WINEBUILD_TARGET) $(WINEBUILD_FLAGS) -o $(INTERMEDIATE)$(SEP)$(source_path)$(SEP)$(source_name_noext).stubs.c --pedll $(source_path)$(SEP)$(source_name_noext).spec\n"
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).stubs.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).stubs.c$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                     "\t$(ECHO_CC)\n"
+                     "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).spec.def",
                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).stubs.c",
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).stubs.o",
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule widlHeaderRule ( "$(source): ${$(module_name)_precondition}\n"
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_WIDL)\n"
+                      "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h $(source)\n",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).h",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule widlServerRule ( "$(source): ${$(module_name)_precondition}\n"
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_WIDL)\n"
+                      "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h -s -S $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(source)\n"
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_CC)\n"
+                      "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.h",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.c",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_s.o",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule widlClientRule ( "$(source): ${$(module_name)_precondition}\n"
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_WIDL)\n"
+                      "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h -c -C $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(source)\n"
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_CC)\n"
+                      "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.h",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.c",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_c.o",
+                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule widlProxyRule ( "$(source): ${$(module_name)_precondition}\n"
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                     "\t$(ECHO_WIDL)\n"
+                     "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -h -H $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h -p -P $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(source)\n"
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.o: $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                      "\t$(ECHO_CC)\n"
+                      "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.h",
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.c",
+                     "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_p.o",
                      "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule widlTlbRule ( "$(source): ${$(module_name)_precondition}\n"
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(module_name).tlb: $(source)$(dependencies) $(WIDL_TARGET) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                   "\t$(ECHO_WIDL)\n"
+                   "\t$(Q)$(WIDL_TARGET) $($(module_name)_WIDLFLAGS) -t -T $(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext).tlb $(source)\n",
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)", NULL );
+Rule gccRule ( "$(source): ${$(module_name)_precondition}\n"
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+               "\t$(ECHO_CC)\n"
+               "\t${gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
+Rule gccHostRule ( "$(source): ${$(module_name)_precondition}\n"
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                   "\t$(ECHO_CC)\n"
+                   "\t${host_gcc} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
+Rule gppRule ( "$(source): ${$(module_name)_precondition}\n"
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+               "\t$(ECHO_CC)\n"
+               "\t${gpp} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+               "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
+Rule gppHostRule ( "$(source): ${$(module_name)_precondition}\n"
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o: $(source)$(dependencies) | $(INTERMEDIATE)$(SEP)$(source_dir)\n"
+                   "\t$(ECHO_CC)\n"
+                   "\t${host_gpp} -o $@ $($(module_name)_CFLAGS)$(compiler_flags) -c $<\n",
+                   "$(INTERMEDIATE)$(SEP)$(source_dir)$(SEP)$(source_name_noext)_$(module_name).o", NULL );
+Rule emptyRule ( "", NULL );
 
 void
 MingwModuleHandler::GenerateGccCommand (
        const FileLocation* sourceFile,
-       const string& extraDependencies,
-       const string& cc,
-       const string& cflagsMacro )
+       const Rule *rule,
+       const string& extraDependencies )
 {
-       const FileLocation *generatedSourceFileName = GetActualSourceFilename ( sourceFile );
        const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
-       string dependencies = backend->GetFullName ( *generatedSourceFileName );
+       string dependencies = extraDependencies;
+
+       string flags;
+       string extension = GetExtension ( *sourceFile );
+       if ( extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
+               flags = GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, CompilerTypeCPP );
+       else
+               flags = GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags, CompilerTypeCC );
 
-       if ( extraDependencies != "" )
-               dependencies += " " + extraDependencies;
        if ( pchFilename )
+       {
                dependencies += " " + backend->GetFullName ( *pchFilename );
+               delete pchFilename;
+       }
 
        /* WIDL generated headers may be used */
        vector<FileLocation> rpcDependencies;
        GetRpcHeaderDependencies ( rpcDependencies );
-       dependencies += " " + v2s ( backend, rpcDependencies, 5 );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       const FileLocation *objectFilename = GetObjectFilename (
-               sourceFile, module, &clean_files );
-       fprintf ( fMakefile,
-                 "%s: %s | %s\n",
-                 backend->GetFullName ( *objectFilename ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( *objectFilename ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_CC)\n" );
-       fprintf ( fMakefile,
-                "\t%s -c $< -o $@ %s\n",
-                cc.c_str (),
-                cflagsMacro.c_str () );
-
-       delete objectFilename;
-       delete generatedSourceFileName;
-       if ( pchFilename )
-               delete pchFilename;
-}
+       if ( rpcDependencies.size () > 0 )
+               dependencies += " " + v2s ( backend, rpcDependencies, 5 );
 
-const std::string&
-MingwModuleHandler::GetWidlFlags ( const CompilationUnit& compilationUnit )
-{
-       return compilationUnit.GetSwitches ();
+       rule->Execute ( fMakefile, backend, module, sourceFile, clean_files, dependencies, flags );
 }
 
 string
@@ -1350,44 +1331,6 @@ MingwModuleHandler::GetRpcServerHeaderFilename ( const FileLocation *base ) cons
        return new FileLocation ( IntermediateDirectory, base->relative_path, newname );
 }
 
-void
-MingwModuleHandler::GenerateWidlCommandsServer (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-       string dependencies = backend->GetFullName ( sourceFile );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       string basename = GetBasename ( sourceFile.name );
-
-       const FileLocation *generatedHeaderFilename = GetRpcServerHeaderFilename ( &sourceFile );
-       CLEAN_FILE ( *generatedHeaderFilename );
-
-       FileLocation generatedServerFilename ( IntermediateDirectory,
-                                              sourceFile.relative_path,
-                                              basename + "_s.c" );
-       CLEAN_FILE ( generatedServerFilename );
-
-       fprintf ( fMakefile,
-                 "%s %s: %s $(WIDL_TARGET) | %s\n",
-                 backend->GetFullName ( generatedServerFilename ).c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( generatedServerFilename ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_WIDL)\n" );
-       fprintf ( fMakefile,
-                 "\t%s %s %s -h -H %s -s -S %s %s\n",
-                 "$(Q)$(WIDL_TARGET)",
-                 GetWidlFlags ( compilationUnit ).c_str (),
-                 widlflagsMacro.c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 backend->GetFullName ( generatedServerFilename ).c_str (),
-                 backend->GetFullName ( sourceFile ).c_str () );
-
-       delete generatedHeaderFilename;
-}
-
 /* caller needs to delete the returned object */
 const FileLocation*
 MingwModuleHandler::GetRpcClientHeaderFilename ( const FileLocation *base ) const
@@ -1420,175 +1363,10 @@ MingwModuleHandler::GetMcHeaderFilename ( const FileLocation *base ) const
        return new FileLocation ( IntermediateDirectory, "include/reactos" , newname );
 }
 
-void
-MingwModuleHandler::GenerateWidlCommandsEmbeddedTypeLib (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-       string dependencies = backend->GetFullName ( sourceFile );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       string basename = GetBasename ( sourceFile.name );
-
-       FileLocation EmbeddedTypeLibFilename ( IntermediateDirectory,
-                                              sourceFile.relative_path,
-                                              basename + ".tlb" );
-
-       fprintf ( fMakefile,
-                 "%s: %s $(WIDL_TARGET) | %s\n",
-                 GetTargetMacro ( module ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( EmbeddedTypeLibFilename ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_WIDL)\n" );
-       fprintf ( fMakefile,
-                 "\t%s %s %s -t -T %s %s\n",
-                 "$(Q)$(WIDL_TARGET)",
-                 GetWidlFlags ( compilationUnit ).c_str (),
-                 widlflagsMacro.c_str (),
-                 backend->GetFullName ( EmbeddedTypeLibFilename ).c_str(),
-                 backend->GetFullName ( sourceFile ).c_str () );
-}
-
-void
-MingwModuleHandler::GenerateWidlCommandsClient (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-       string dependencies = backend->GetFullName ( sourceFile );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       string basename = GetBasename ( sourceFile.name );
-
-       const FileLocation *generatedHeaderFilename = GetRpcClientHeaderFilename ( &sourceFile );
-       CLEAN_FILE ( *generatedHeaderFilename );
-
-       FileLocation generatedClientFilename ( IntermediateDirectory,
-                                              sourceFile.relative_path,
-                                              basename + "_c.c" );
-       CLEAN_FILE ( generatedClientFilename );
-
-       fprintf ( fMakefile,
-                 "%s %s: %s $(WIDL_TARGET) | %s\n",
-                 backend->GetFullName ( generatedClientFilename ).c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( generatedClientFilename ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_WIDL)\n" );
-       fprintf ( fMakefile,
-                 "\t%s %s %s -h -H %s -c -C %s %s\n",
-                 "$(Q)$(WIDL_TARGET)",
-                 GetWidlFlags ( compilationUnit ).c_str (),
-                 widlflagsMacro.c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 backend->GetFullName ( generatedClientFilename ).c_str (),
-                 backend->GetFullName ( sourceFile ).c_str () );
-
-       delete generatedHeaderFilename;
-}
-
-void
-MingwModuleHandler::GenerateWidlCommandsProxy (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-       string dependencies = backend->GetFullName ( sourceFile );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       string basename = GetBasename ( sourceFile.name );
-
-       const FileLocation *generatedHeaderFilename = GetRpcProxyHeaderFilename ( &sourceFile );
-       CLEAN_FILE ( *generatedHeaderFilename );
-
-       FileLocation generatedProxyFilename ( IntermediateDirectory,
-                                             sourceFile.relative_path,
-                                             basename + "_p.c" );
-       CLEAN_FILE ( generatedProxyFilename );
-
-       fprintf ( fMakefile,
-                 "%s %s: %s $(WIDL_TARGET) | %s\n",
-                 backend->GetFullName ( generatedProxyFilename ).c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( generatedProxyFilename ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_WIDL)\n" );
-       fprintf ( fMakefile,
-                 "\t%s %s %s -h -H %s -p -P %s %s\n",
-                 "$(Q)$(WIDL_TARGET)",
-                 GetWidlFlags ( compilationUnit ).c_str (),
-                 widlflagsMacro.c_str (),
-                 backend->GetFullName ( *generatedHeaderFilename ).c_str (),
-                 backend->GetFullName ( generatedProxyFilename ).c_str (),
-                 backend->GetFullName ( sourceFile ).c_str () );
-
-       delete generatedHeaderFilename;
-}
-
-void
-MingwModuleHandler::GenerateWidlCommandsIdlHeader (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-       string dependencies = backend->GetFullName ( sourceFile );
-       dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
-
-       string basename = GetBasename ( sourceFile.name );
-
-       const FileLocation *generatedHeader = GetIdlHeaderFilename ( &sourceFile );
-       CLEAN_FILE ( *generatedHeader );
-
-       fprintf ( fMakefile,
-                 "%s: %s $(WIDL_TARGET) | %s\n",
-                 backend->GetFullName( *generatedHeader ).c_str (),
-                 dependencies.c_str (),
-                 backend->GetFullPath ( *generatedHeader ).c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_WIDL)\n" );
-       fprintf ( fMakefile,
-                 "\t%s %s %s -h -H %s %s\n",
-                 "$(Q)$(WIDL_TARGET)",
-                 GetWidlFlags ( compilationUnit ).c_str (),
-                 widlflagsMacro.c_str (),
-                 backend->GetFullName ( *generatedHeader ).c_str (),
-                 backend->GetFullName ( sourceFile ).c_str () );
-
-       delete generatedHeader;
-}
-
-void
-MingwModuleHandler::GenerateWidlCommands (
-       const CompilationUnit& compilationUnit,
-       const string& widlflagsMacro )
-{
-       if ( module.type == RpcServer )
-               GenerateWidlCommandsServer ( compilationUnit,
-                                            widlflagsMacro );
-       else if ( module.type == RpcClient )
-               GenerateWidlCommandsClient ( compilationUnit,
-                                            widlflagsMacro );
-       else if ( module.type == RpcProxy )
-               GenerateWidlCommandsProxy ( compilationUnit,
-                                           widlflagsMacro );
-       else if ( module.type == EmbeddedTypeLib )
-               GenerateWidlCommandsEmbeddedTypeLib ( compilationUnit,
-                                                     widlflagsMacro );
-       else // applies also for other module.types which include idl files
-               GenerateWidlCommandsIdlHeader ( compilationUnit,
-                                               widlflagsMacro );
-}
-
 void
 MingwModuleHandler::GenerateCommands (
        const CompilationUnit& compilationUnit,
-       const string& extraDependencies,
-       const string& cc,
-       const string& cppc,
-       const string& cflagsMacro,
-       const string& nasmflagsMacro,
-       const string& windresflagsMacro,
-       const string& widlflagsMacro )
+       const string& extraDependencies )
 {
        const FileLocation& sourceFile = compilationUnit.GetFilename ();
        string extension = GetExtension ( sourceFile );
@@ -1607,6 +1385,20 @@ MingwModuleHandler::GenerateCommands (
                { HostDontCare, TypeDontCare, ".rc", &windresRule },
                { HostDontCare, TypeDontCare, ".mc", &wmcRule },
                { HostDontCare, TypeDontCare, ".spec", &winebuildRule },
+               { HostDontCare, RpcServer, ".idl", &widlServerRule },
+               { HostDontCare, RpcClient, ".idl", &widlClientRule },
+               { HostDontCare, RpcProxy, ".idl", &widlProxyRule },
+               { HostDontCare, EmbeddedTypeLib, ".idl", &widlTlbRule },
+               { HostDontCare, TypeDontCare, ".idl", &widlHeaderRule },
+               { HostTrue, TypeDontCare, ".c", &gccHostRule },
+               { HostTrue, TypeDontCare, ".cc", &gppHostRule },
+               { HostTrue, TypeDontCare, ".cpp", &gppHostRule },
+               { HostTrue, TypeDontCare, ".cxx", &gppHostRule },
+               { HostFalse, TypeDontCare, ".c", &gccRule },
+               { HostFalse, TypeDontCare, ".cc", &gppRule },
+               { HostFalse, TypeDontCare, ".cpp", &gppRule },
+               { HostFalse, TypeDontCare, ".cxx", &gppRule },
+               { HostFalse, Cabinet, ".*", &emptyRule }
        };
        size_t i;
        Rule *customRule = NULL;
@@ -1617,55 +1409,21 @@ MingwModuleHandler::GenerateCommands (
                        continue;
                if ( rules[i].type != TypeDontCare && rules[i].type != module.type )
                        continue;
-               if ( rules[i].extension != extension )
+               if ( rules[i].extension != extension && rules[i].extension != ".*")
                        continue;
                customRule = rules[i].rule;
                break;
        }
 
-       if ( customRule )
-               customRule->Execute ( fMakefile, backend, module, &sourceFile, clean_files );
-
-       string flags = cflagsMacro;
-       flags += " ";
-       if ( extension == ".c" )
-       {
-               flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , CompilerTypeCC );
-               GenerateGccCommand ( &sourceFile,
-                                    GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies,
-                                    cc,
-                                    flags );
-       }
-       else if ( extension == ".cc" ||
-                 extension == ".cpp" || 
-                 extension == ".cxx" )
+       if ( extension == ".c" || extension == ".cc" || extension == ".cpp" || extension == ".cxx" )
        {
-               flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , CompilerTypeCPP );
                GenerateGccCommand ( &sourceFile,
-                                    GetCompilationUnitDependencies ( compilationUnit ) + extraDependencies,
-                                    cppc,
-                                    flags );
-       }
-       else if ( extension == ".spec" )
-       {
-               GenerateGccCommand ( &sourceFile,
-                                    extraDependencies,
-                                    cc,
-                                    cflagsMacro );
-       }
-       else if ( extension == ".idl" )
-       {
-               GenerateWidlCommands ( compilationUnit,
-                                      widlflagsMacro );
-               if ( (module.type == RpcServer) || (module.type == RpcClient) || (module.type == RpcProxy) )
-               {
-                       GenerateGccCommand ( &sourceFile,
-                                            GetExtraDependencies ( &sourceFile ),
-                                            cc,
-                                            cflagsMacro );
-               }
+                                    customRule,
+                                    GetCompilationUnitDependencies ( compilationUnit ) + GetExtraDependencies ( &sourceFile ) + extraDependencies );
        }
-       else if ( !customRule )
+       else if ( customRule )
+               customRule->Execute ( fMakefile, backend, module, &sourceFile, clean_files );
+       else
        {
                throw InvalidOperationException ( __FILE__,
                                                  __LINE__,
@@ -1761,7 +1519,7 @@ MingwModuleHandler::GetObjectsVector ( const IfableData& data,
        {
                CompilationUnit& compilationUnit = *data.compilationUnits[i];
                const FileLocation& compilationName = compilationUnit.GetFilename ();
-               const FileLocation *object_file = GetObjectFilename ( &compilationName, module, NULL );
+               const FileLocation *object_file = GetObjectFilename ( &compilationName, module );
                objectFiles.push_back ( *object_file );
                delete object_file;
        }
@@ -1791,10 +1549,14 @@ MingwModuleHandler::GenerateCleanObjectsAsYouGoCode () const
 void
 MingwModuleHandler::GenerateRunRsymCode () const
 {
+       fprintf ( fMakefile,
+             "ifneq ($(ROS_GENERATE_RSYM),no)\n" );
        fprintf ( fMakefile,
                  "\t$(ECHO_RSYM)\n" );
        fprintf ( fMakefile,
                  "\t$(Q)$(RSYM_TARGET) $@ $@\n\n" );
+       fprintf ( fMakefile,
+             "endif\n" );
 }
 
 void
@@ -1813,46 +1575,51 @@ MingwModuleHandler::GenerateRunStripCode () const
 void
 MingwModuleHandler::GenerateLinkerCommand (
        const string& dependencies,
-       const string& linker,
        const string& linkerParameters,
-       const string& objectsMacro,
-       const string& libsMacro,
        const string& pefixupParameters )
 {
        const FileLocation *target_file = GetTargetFilename ( module, NULL );
        const FileLocation *definitionFilename = GetDefinitionFilename ();
+       string linker = "${ld}";
+       string objectsMacro = GetObjectsMacro ( module );
+       string libsMacro = GetLibsMacro ();
 
        string target_macro ( GetTargetMacro ( module ) );
        string target_folder ( backend->GetFullPath ( *target_file ) );
 
        string linkerScriptArgument;
        if ( module.linkerScript != NULL )
-               linkerScriptArgument = ssprintf ( "-Wl,-T,%s", backend->GetFullName ( module.linkerScript->file ).c_str () );
+               linkerScriptArgument = ssprintf ( " -T %s", backend->GetFullName ( *module.linkerScript->file ).c_str () );
        else
                linkerScriptArgument = "";
 
        fprintf ( fMakefile,
                "%s: %s %s $(RSYM_TARGET) $(PEFIXUP_TARGET) | %s\n",
                target_macro.c_str (),
-               backend->GetFullName ( *definitionFilename ).c_str (),
+               definitionFilename ? backend->GetFullName ( *definitionFilename ).c_str () : "",
                dependencies.c_str (),
                target_folder.c_str () );
        fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
        string targetName ( module.output->name );
 
-       if ( !module.IsDLL () )
+       /* HACK: if we have C++ in kernel, link it with some user mode dlls (kernel32 + msvcrt) ... */
+       static const string libsCppKernel = " '$(shell ${TARGET_CC} -print-file-name=libkernel32.a)' '$(shell ${TARGET_CC} -print-file-name=libmsvcrt.a)'";
+
+       if ( !module.HasImportLibrary() )
        {
                fprintf ( fMakefile,
-                         "\t%s %s %s -o %s %s %s %s\n",
+                         "\t%s %s%s %s %s%s %s %s -o %s\n",
                          linker.c_str (),
                          linkerParameters.c_str (),
                          linkerScriptArgument.c_str (),
-                         target_macro.c_str (),
                          objectsMacro.c_str (),
+                         module.cplusplus ? "$(PROJECT_LPPFLAGS) " : "",
+                         module.cplusplus && (module.type == KernelModeDLL || module.type == KernelModeDriver) ? libsCppKernel.c_str () : "",
                          libsMacro.c_str (),
-                         GetLinkerMacro ().c_str () );
+                         GetLinkerMacro ().c_str (),
+                         target_macro.c_str () );
        }
-       else if ( module.HasImportLibrary () )
+       else
        {
                FileLocation temp_exp ( TemporaryDirectory,
                                        "",
@@ -1860,26 +1627,28 @@ MingwModuleHandler::GenerateLinkerCommand (
                CLEAN_FILE ( temp_exp );
 
                fprintf ( fMakefile,
-                         "\t${dlltool} --dllname %s --def %s --output-exp %s %s %s\n",
+                         "\t${dlltool} --dllname %s --def %s --output-exp %s%s%s\n",
                          targetName.c_str (),
-                         backend->GetFullName ( *definitionFilename ).c_str (),
+                         definitionFilename ? backend->GetFullName ( *definitionFilename ).c_str () : "",
                          backend->GetFullName ( temp_exp ).c_str (),
-                         module.mangledSymbols ? "" : "--kill-at",
-                         module.underscoreSymbols ? "--add-underscore" : "" );
+                         module.mangledSymbols ? "" : " --kill-at",
+                         module.underscoreSymbols ? " --add-underscore" : "" );
 
                fprintf ( fMakefile,
-                         "\t%s %s %s %s -o %s %s %s %s\n",
+                         "\t%s %s%s %s %s %s%s %s %s -o %s\n",
                          linker.c_str (),
                          linkerParameters.c_str (),
                          linkerScriptArgument.c_str (),
                          backend->GetFullName ( temp_exp ).c_str (),
-                         target_macro.c_str (),
                          objectsMacro.c_str (),
+                         module.cplusplus ? "$(PROJECT_LPPFLAGS) " : "",
+                         module.cplusplus && (module.type == KernelModeDLL || module.type == KernelModeDriver) ? libsCppKernel.c_str () : "",
                          libsMacro.c_str (),
-                         GetLinkerMacro ().c_str () );
+                         GetLinkerMacro ().c_str (),
+                         target_macro.c_str () );
 
                fprintf ( fMakefile,
-                         "\t$(Q)$(PEFIXUP_TARGET) %s -exports %s\n",
+                         "\t$(Q)$(PEFIXUP_TARGET) %s -exports%s\n",
                          target_macro.c_str (),
                          pefixupParameters.c_str() );
 
@@ -1887,24 +1656,6 @@ MingwModuleHandler::GenerateLinkerCommand (
                          "\t-@${rm} %s 2>$(NUL)\n",
                          backend->GetFullName ( temp_exp ).c_str () );
        }
-       else
-       {
-               /* XXX: need to workaround binutils bug, which exports
-                * all functions in a dll if no .def file or an empty
-                * one has been provided... */
-               /* See bug 1244 */
-               //printf ( "%s will have all its functions exported\n",
-               //         module.target->name.c_str () );
-               fprintf ( fMakefile,
-                         "\t%s %s %s -o %s %s %s %s\n",
-                         linker.c_str (),
-                         linkerParameters.c_str (),
-                         linkerScriptArgument.c_str (),
-                         target_macro.c_str (),
-                         objectsMacro.c_str (),
-                         libsMacro.c_str (),
-                         GetLinkerMacro ().c_str () );
-       }
 
        GenerateBuildMapCode ();
        GenerateBuildNonSymbolStrippedCode ();
@@ -1912,7 +1663,8 @@ MingwModuleHandler::GenerateLinkerCommand (
        GenerateRunStripCode ();
        GenerateCleanObjectsAsYouGoCode ();
 
-       delete definitionFilename;
+       if ( definitionFilename )
+               delete definitionFilename;
        delete target_file;
 }
 
@@ -1933,14 +1685,7 @@ MingwModuleHandler::GeneratePhonyTarget() const
 }
 
 void
-MingwModuleHandler::GenerateObjectFileTargets (
-       const IfableData& data,
-       const string& cc,
-       const string& cppc,
-       const string& cflagsMacro,
-       const string& nasmflagsMacro,
-       const string& windresflagsMacro,
-       const string& widlflagsMacro )
+MingwModuleHandler::GenerateObjectFileTargets ( const IfableData& data )
 {
        size_t i;
        string moduleDependencies;
@@ -1950,7 +1695,7 @@ MingwModuleHandler::GenerateObjectFileTargets (
        {
                CompilationUnit& compilationUnit = *compilationUnits[i];
                const FileLocation& compilationName = compilationUnit.GetFilename ();
-               const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module, NULL );
+               const FileLocation *objectFilename = GetObjectFilename ( &compilationName, module );
                if ( GetExtension ( *objectFilename ) == ".h" )
                        moduleDependencies += ssprintf ( " $(%s_HEADERS)", module.name.c_str () );
                else if ( GetExtension ( *objectFilename ) == ".rc" )
@@ -1961,13 +1706,7 @@ MingwModuleHandler::GenerateObjectFileTargets (
        for ( i = 0; i < compilationUnits.size (); i++ )
        {
                GenerateCommands ( *compilationUnits[i],
-                                  moduleDependencies,
-                                  cc,
-                                  cppc,
-                                  cflagsMacro,
-                                  nasmflagsMacro,
-                                  windresflagsMacro,
-                                  widlflagsMacro );
+                                  moduleDependencies );
                fprintf ( fMakefile,
                          "\n" );
        }
@@ -1975,13 +1714,7 @@ MingwModuleHandler::GenerateObjectFileTargets (
        const vector<If*>& ifs = data.ifs;
        for ( i = 0; i < ifs.size(); i++ )
        {
-               GenerateObjectFileTargets ( ifs[i]->data,
-                                           cc,
-                                           cppc,
-                                           cflagsMacro,
-                                           nasmflagsMacro,
-                                           windresflagsMacro,
-                                           widlflagsMacro );
+               GenerateObjectFileTargets ( ifs[i]->data );
        }
 
        vector<CompilationUnit*> sourceCompilationUnits;
@@ -1989,41 +1722,29 @@ MingwModuleHandler::GenerateObjectFileTargets (
        for ( i = 0; i < sourceCompilationUnits.size (); i++ )
        {
                GenerateCommands ( *sourceCompilationUnits[i],
-                                  moduleDependencies,
-                                  cc,
-                                  cppc,
-                                  cflagsMacro,
-                                  nasmflagsMacro,
-                                  windresflagsMacro,
-                                  widlflagsMacro );
+                                  moduleDependencies );
        }
        CleanupCompilationUnitVector ( sourceCompilationUnits );
 }
 
 void
-MingwModuleHandler::GenerateObjectFileTargets (
-       const string& cc,
-       const string& cppc,
-       const string& cflagsMacro,
-       const string& nasmflagsMacro,
-       const string& windresflagsMacro,
-       const string& widlflagsMacro )
+MingwModuleHandler::GenerateObjectFileTargets ()
 {
        const FileLocation *pchFilename = GetPrecompiledHeaderFilename ();
 
        if ( pchFilename )
        {
-               const FileLocation& baseHeaderFile = module.pch->file;
+               string cc = ( module.host == HostTrue ? "${host_gcc}" : "${gcc}" );
+               string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
+
+               const FileLocation& baseHeaderFile = *module.pch->file;
                CLEAN_FILE ( *pchFilename );
                string dependencies = backend->GetFullName ( baseHeaderFile );
-               string flags = cflagsMacro;
-               CompilerType type = module.cplusplus ? CompilerTypeCPP : CompilerTypeCC;
-               flags += " ";
-               flags += GenerateCompilerParametersFromVector ( module.non_if_data.compilerFlags , type );
                /* WIDL generated headers may be used */
                vector<FileLocation> rpcDependencies;
                GetRpcHeaderDependencies ( rpcDependencies );
-               dependencies += " " + v2s ( backend, rpcDependencies, 5 );
+               if ( rpcDependencies.size () > 0 )
+                       dependencies += " " + v2s ( backend, rpcDependencies, 5 );
                fprintf ( fMakefile,
                          "%s: %s | %s\n",
                          backend->GetFullName ( *pchFilename ).c_str(),
@@ -2034,54 +1755,41 @@ MingwModuleHandler::GenerateObjectFileTargets (
                          "\t%s -o %s %s -g %s\n\n",
                          module.cplusplus ? cppc.c_str() : cc.c_str(),
                          backend->GetFullName ( *pchFilename ).c_str(),
-                         flags.c_str(),
+                         cflagsMacro.c_str(),
                          backend->GetFullName ( baseHeaderFile ).c_str() );
                delete pchFilename;
        }
 
-       GenerateObjectFileTargets ( module.non_if_data,
-                                   cc,
-                                   cppc,
-                                   cflagsMacro,
-                                   nasmflagsMacro,
-                                   windresflagsMacro,
-                                   widlflagsMacro );
+       GenerateObjectFileTargets ( module.non_if_data );
        fprintf ( fMakefile, "\n" );
 }
 
 /* caller needs to delete the returned object */
 const FileLocation*
-MingwModuleHandler::GenerateArchiveTarget ( const string& ar,
-                                            const string& objs_macro ) const
+MingwModuleHandler::GenerateArchiveTarget ()
 {
        const FileLocation *archiveFilename = GetModuleArchiveFilename ();
+       const FileLocation *definitionFilename = GetDefinitionFilename ();
 
-       fprintf ( fMakefile,
-                 "%s: %s | %s\n",
-                 backend->GetFullName ( *archiveFilename ).c_str (),
-                 objs_macro.c_str (),
-                 backend->GetFullPath ( *archiveFilename ).c_str() );
+       arRule1.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
 
-       if ( module.type == StaticLibrary && module.importLibrary )
+       if ( IsStaticLibrary ( module ) && definitionFilename )
        {
-               const FileLocation *definitionFilename = GetDefinitionFilename ();
-
                fprintf ( fMakefile,
-                         "\t${dlltool} --dllname %s --def %s --output-lib $@ %s %s\n",
+                         "\t${dlltool} --dllname %s --def %s --output-lib $@%s%s\n",
                          module.importLibrary->dllname.c_str (),
                          backend->GetFullName ( *definitionFilename ).c_str (),
-                         module.mangledSymbols ? "" : "--kill-at",
-                         module.underscoreSymbols ? "--add-underscore" : "" );
-
-               delete definitionFilename;
+                         module.mangledSymbols ? "" : " --kill-at",
+                         module.underscoreSymbols ? " --add-underscore" : "" );
        }
 
-       fprintf ( fMakefile, "\t$(ECHO_AR)\n" );
+       if ( definitionFilename )
+               delete definitionFilename;
 
-       fprintf ( fMakefile,
-                 "\t%s -rc $@ %s\n",
-                 ar.c_str (),
-                 objs_macro.c_str ());
+       if(module.type == HostStaticLibrary)
+               arHostRule2.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
+       else
+               arRule2.Execute ( fMakefile, backend, module, archiveFilename, clean_files );
 
        GenerateCleanObjectsAsYouGoCode ();
 
@@ -2241,11 +1949,14 @@ MingwModuleHandler::GenerateOtherMacros ()
                &module.linkerFlags,
                used_defs );
 
-       GenerateMacros (
-               "+=",
-               module.project.non_if_data,
-               NULL,
-               used_defs );
+       if ( module.host == HostFalse )
+       {
+               GenerateMacros (
+                       "+=",
+                       module.project.non_if_data,
+                       NULL,
+                       used_defs );
+       }
 
        vector<FileLocation> s;
        if ( module.importLibrary )
@@ -2273,7 +1984,12 @@ MingwModuleHandler::GenerateOtherMacros ()
                fprintf ( fMakefile, "\n" );
        }
 
-       string globalCflags = "-g";
+       string globalCflags = "";
+       if ( module.host == HostFalse )
+               globalCflags += " $(PROJECT_CFLAGS)";
+       else
+               globalCflags += " -Wall -Wpointer-arith -D__REACTOS__";
+       globalCflags += " -g";
        if ( backend->usePipe )
                globalCflags += " -pipe";
        if ( !module.allowWarnings )
@@ -2283,7 +1999,7 @@ MingwModuleHandler::GenerateOtherMacros ()
                if ( module.cplusplus )
                        globalCflags += " $(HOST_CPPFLAGS)";
                else
-                       globalCflags += " $(HOST_CFLAGS)";
+                       globalCflags += " -Wno-strict-aliasing $(HOST_CFLAGS)";
        }
        else
        {
@@ -2302,25 +2018,35 @@ MingwModuleHandler::GenerateOtherMacros ()
 
        fprintf (
                fMakefile,
-               "%s += $(PROJECT_CFLAGS) %s\n",
+               "%s +=%s\n",
                cflagsMacro.c_str (),
                globalCflags.c_str () );
 
-       fprintf (
-               fMakefile,
-               "%s += $(PROJECT_RCFLAGS)\n",
-               windresflagsMacro.c_str () );
+       if ( module.host == HostFalse )
+       {
+               fprintf (
+                       fMakefile,
+                       "%s += $(PROJECT_RCFLAGS)\n",
+                       windresflagsMacro.c_str () );
 
-       fprintf (
-               fMakefile,
-               "%s += $(PROJECT_WIDLFLAGS) -I%s\n",
-               widlflagsMacro.c_str (),
-               module.output->relative_path.c_str () );
+               fprintf (
+                       fMakefile,
+                       "%s += $(PROJECT_WIDLFLAGS) -I%s\n",
+                       widlflagsMacro.c_str (),
+                       module.output->relative_path.c_str () );
 
-       fprintf (
-               fMakefile,
-               "%s_LFLAGS += $(PROJECT_LFLAGS) -g\n",
-               module.name.c_str () );
+               fprintf (
+                       fMakefile,
+                       "%s_LFLAGS += $(PROJECT_LFLAGS) -g\n",
+                       module.name.c_str () );
+       }
+       else
+       {
+               fprintf (
+                       fMakefile,
+                       "%s_LFLAGS += $(HOST_LFLAGS)\n",
+                       module.name.c_str () );
+       }
 
        fprintf (
                fMakefile,
@@ -2355,7 +2081,7 @@ MingwModuleHandler::GenerateOtherMacros ()
                          linkerflags.c_str () );
        }
 
-       if ( module.type == StaticLibrary && module.isStartupLib )
+       if ( IsStaticLibrary ( module ) && module.isStartupLib )
        {
                fprintf ( fMakefile,
                          "%s += -Wno-main\n\n",
@@ -2373,10 +2099,6 @@ MingwModuleHandler::GenerateOtherMacros ()
 void
 MingwModuleHandler::GenerateRules ()
 {
-       string cc = ( module.host == HostTrue ? "${host_gcc}" : "${gcc}" );
-       string cppc = ( module.host == HostTrue ? "${host_gpp}" : "${gpp}" );
-       string ar = ( module.host == HostTrue ? "${host_ar}" : "${ar}" );
-
        string targetMacro = GetTargetMacro ( module );
        //CLEAN_FILE ( targetMacro );
        CLEAN_FILE ( FileLocation ( SourceDirectory, "", targetMacro ) );
@@ -2399,17 +2121,11 @@ MingwModuleHandler::GenerateRules ()
 
        if ( !ReferenceObjects ( module ) )
        {
-               const FileLocation* ar_target = GenerateArchiveTarget ( ar, objectsMacro );
-               CLEAN_FILE ( *ar_target );
+               const FileLocation* ar_target = GenerateArchiveTarget ();
                delete ar_target;
        }
 
-       GenerateObjectFileTargets ( cc,
-                                   cppc,
-                                   cflagsMacro,
-                                   nasmflagsMacro,
-                                   windresflagsMacro,
-                                   widlflagsMacro );
+       GenerateObjectFileTargets ();
 }
 
 void
@@ -2489,41 +2205,47 @@ MingwModuleHandler::GetDefaultDependencies (
        string_list& dependencies ) const
 {
        /* Avoid circular dependency */
-       if ( module.type != BuildTool
-               && module.name != "zlib"
-               && module.name != "hostzlib" )
-
-               dependencies.push_back ( "$(INIT)" );
-
-       if ( module.type != BuildTool
-               && module.name != "psdk" )
+       if ( module.host == HostTrue )
+               return;
 
-       dependencies.push_back ( "$(PSDK_TARGET) $(psdk_HEADERS)" );
+       if (module.name != "psdk" && 
+               module.name != "dxsdk")
+       {
+               dependencies.push_back ( "$(PSDK_TARGET) $(psdk_HEADERS)" );
+               dependencies.push_back ( "$(DXSDK_TARGET) $(dxsdk_HEADERS)" );
+       }
 
-       /* Check if any dependent library relays on the generated headers */
-       for ( size_t i = 0; i < module.project.modules.size (); i++ )
+       if (module.name != "errcodes" && 
+               module.name != "bugcodes" &&
+               module.name != "ntstatus")
        {
-               const Module& m = *module.project.modules[i];
-               for ( size_t j = 0; j < m.non_if_data.compilationUnits.size (); j++ )
-               {
-                       CompilationUnit& compilationUnit = *m.non_if_data.compilationUnits[j];
-                       const FileLocation& sourceFile = compilationUnit.GetFilename ();
-                       string extension = GetExtension ( sourceFile );
-                       if (extension == ".mc" || extension == ".MC" )
-                       {
-                               string dependency = ssprintf ( " $(%s_MCHEADERS)", m.name.c_str () );
-                               dependencies.push_back ( dependency );
-                       }
-               }
+               dependencies.push_back ( "$(ERRCODES_TARGET) $(ERRCODES_MCHEADERS)" );
+               dependencies.push_back ( "$(BUGCODES_TARGET) $(BUGCODES_MCHEADERS)" );
+               dependencies.push_back ( "$(NTSTATUS_TARGET) $(NTSTATUS_MCHEADERS)" );
        }
+
+       ///* Check if any dependent library relies on the generated headers */
+       //for ( size_t i = 0; i < module.project.modules.size (); i++ )
+       //{
+       //      const Module& m = *module.project.modules[i];
+       //      for ( size_t j = 0; j < m.non_if_data.compilationUnits.size (); j++ )
+       //      {
+       //              CompilationUnit& compilationUnit = *m.non_if_data.compilationUnits[j];
+       //              const FileLocation& sourceFile = compilationUnit.GetFilename ();
+       //              string extension = GetExtension ( sourceFile );
+       //              if (extension == ".mc" || extension == ".MC" )
+       //              {
+       //                      string dependency = ssprintf ( "$(%s_MCHEADERS)", m.name.c_str () );
+       //                      dependencies.push_back ( dependency );
+       //              }
+       //      }
+       //}
 }
 
 void
 MingwModuleHandler::GeneratePreconditionDependencies ()
 {
        string preconditionDependenciesName = GetPreconditionDependenciesName ();
-       vector<FileLocation> sourceFilenames;
-       GetSourceFilenamesWithoutGeneratedFiles ( sourceFilenames );
        string_list dependencies;
        GetDefaultDependencies ( dependencies );
        GetModuleDependencies ( dependencies );
@@ -2542,13 +2264,6 @@ MingwModuleHandler::GeneratePreconditionDependencies ()
                fprintf ( fMakefile, "\n\n" );
        }
 
-       for ( size_t i = 0; i < sourceFilenames.size(); i++ )
-       {
-               fprintf ( fMakefile,
-                         "%s: ${%s}\n",
-                         backend->GetFullName ( sourceFilenames[i] ).c_str (),
-                         preconditionDependenciesName.c_str ());
-       }
        fprintf ( fMakefile, "\n" );
 }
 
@@ -2566,20 +2281,18 @@ MingwModuleHandler::IsWineModule () const
 const FileLocation*
 MingwModuleHandler::GetDefinitionFilename () const
 {
-       if ( module.importLibrary != NULL )
-       {
-               DirectoryLocation directory;
-               if ( IsWineModule () )
-                       directory = IntermediateDirectory;
-               else
-                       directory = SourceDirectory;
+       if ( module.importLibrary == NULL )
+               return NULL;
 
-               return new FileLocation ( directory,
-                                         module.importLibrary->source->relative_path,
-                                         module.importLibrary->source->name );
-       }
+       DirectoryLocation directory;
+       if ( IsWineModule () )
+               directory = IntermediateDirectory;
        else
-               return new FileLocation ( SourceDirectory, "tools" + sSep + "rbuild", "empty.def" );
+               directory = SourceDirectory;
+
+       return new FileLocation ( directory,
+                                 module.importLibrary->source->relative_path,
+                                 module.importLibrary->source->name );
 }
 
 void
@@ -2589,15 +2302,21 @@ MingwModuleHandler::GenerateImportLibraryTargetIfNeeded ()
        {
                const FileLocation *library_target = GetImportLibraryFilename ( module, &clean_files );
                const FileLocation *defFilename = GetDefinitionFilename ();
+               string empty = "tools" + sSep + "rbuild" + sSep + "empty.def";
 
                vector<FileLocation> deps;
                GetDefinitionDependencies ( deps );
 
                fprintf ( fMakefile, "# IMPORT LIBRARY RULE:\n" );
 
-               fprintf ( fMakefile, "%s: %s",
-                         backend->GetFullName ( *library_target ).c_str (),
-                         backend->GetFullName ( *defFilename ).c_str () );
+               fprintf ( fMakefile, "%s:",
+                         backend->GetFullName ( *library_target ).c_str () );
+
+               if ( defFilename )
+               {
+                       fprintf ( fMakefile, " %s",
+                                 backend->GetFullName ( *defFilename ).c_str () );
+               }
 
                size_t i, iend = deps.size();
                for ( i = 0; i < iend; i++ )
@@ -2610,14 +2329,16 @@ MingwModuleHandler::GenerateImportLibraryTargetIfNeeded ()
                fprintf ( fMakefile, "\t$(ECHO_DLLTOOL)\n" );
 
                fprintf ( fMakefile,
-                         "\t${dlltool} --dllname %s --def %s --output-lib %s %s %s\n\n",
+                         "\t${dlltool} --dllname %s --def %s --output-lib %s%s%s\n\n",
                          module.output->name.c_str (),
-                         backend->GetFullName ( *defFilename ).c_str (),
+                         defFilename ? backend->GetFullName ( *defFilename ).c_str ()
+                                     : empty.c_str (),
                          backend->GetFullName ( *library_target ).c_str (),
-                         module.mangledSymbols ? "" : "--kill-at",
-                         module.underscoreSymbols ? "--add-underscore" : "" );
+                         module.mangledSymbols ? "" : " --kill-at",
+                         module.underscoreSymbols ? " --add-underscore" : "" );
 
-               delete defFilename;
+               if ( defFilename )
+                       delete defFilename;
                delete library_target;
        }
 }
@@ -2786,9 +2507,7 @@ MingwKernelModuleHandler::GenerateKernelModuleTarget ()
 {
        string targetMacro ( GetTargetMacro ( module ) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -2798,15 +2517,13 @@ MingwKernelModuleHandler::GenerateKernelModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,native -Wl,--entry,%s -Wl,--image-base,%s",
-                                                    module.GetEntryPoint(true).c_str (),
+               string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s",
+                                                    module.GetEntryPoint(!(Environment::GetArch() == "arm")).c_str (),
                                                     module.baseaddress.c_str () );
+
                GenerateLinkerCommand ( dependencies,
-                                       "${gcc}",
-                                       linkerParameters + " $(NTOSKRNL_SHARED)",
-                                       objectsMacro,
-                                       libsMacro,
-                                       "-sections" );
+                                       linkerParameters + " $(NTOSKRNL_SHARED)",
+                                       " -sections" );
        }
        else
        {
@@ -2835,6 +2552,26 @@ MingwStaticLibraryModuleHandler::GenerateStaticLibraryModuleTarget ()
 }
 
 
+MingwHostStaticLibraryModuleHandler::MingwHostStaticLibraryModuleHandler (
+       const Module& module_ )
+
+       : MingwModuleHandler ( module_ )
+{
+}
+
+void
+MingwHostStaticLibraryModuleHandler::Process ()
+{
+       GenerateHostStaticLibraryModuleTarget ();
+}
+
+void
+MingwHostStaticLibraryModuleHandler::GenerateHostStaticLibraryModuleTarget ()
+{
+       GenerateRules ();
+}
+
+
 MingwObjectLibraryModuleHandler::MingwObjectLibraryModuleHandler (
        const Module& module_ )
 
@@ -2893,9 +2630,7 @@ MingwKernelModeDLLModuleHandler::GenerateKernelModeDLLModuleTarget ()
 {
        string targetMacro ( GetTargetMacro ( module ) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -2905,15 +2640,12 @@ MingwKernelModeDLLModuleHandler::GenerateKernelModeDLLModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,native -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -nostartfiles -shared",
+               string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       "${gcc}",
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
-                                       "-sections" );
+                                       " -sections" );
        }
        else
        {
@@ -2947,9 +2679,7 @@ MingwKernelModeDriverModuleHandler::GenerateKernelModeDriverModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ();
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -2959,15 +2689,12 @@ MingwKernelModeDriverModuleHandler::GenerateKernelModeDriverModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,native -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -nostartfiles -shared",
+               string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       "${gcc}",
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
-                                       "-sections" );
+                                       " -sections" );
        }
        else
        {
@@ -3000,9 +2727,7 @@ MingwNativeDLLModuleHandler::GenerateNativeDLLModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3012,14 +2737,11 @@ MingwNativeDLLModuleHandler::GenerateNativeDLLModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,native -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -nostartfiles -nostdlib -shared",
+               string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       "${gcc}",
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3053,9 +2775,7 @@ MingwNativeCUIModuleHandler::GenerateNativeCUIModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3065,14 +2785,11 @@ MingwNativeCUIModuleHandler::GenerateNativeCUIModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,native -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -nostartfiles -nostdlib",
+               string linkerParameters = ssprintf ( "-subsystem=native -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       "${gcc}",
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3118,7 +2835,7 @@ MingwAddImplicitLibraries( Module &module )
          && module.type != Win32OCX
          && module.type != Win32CUI
          && module.type != Win32GUI
-         && module.type != Win32SCR )
+         && module.type != Win32SCR)
        {
                // no implicit libraries
                return;
@@ -3183,9 +2900,7 @@ MingwWin32DLLModuleHandler::GenerateWin32DLLModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3195,20 +2910,11 @@ MingwWin32DLLModuleHandler::GenerateWin32DLLModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linker;
-               if ( module.cplusplus )
-                       linker = "${gpp}";
-               else
-                       linker = "${gcc}";
-
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,console -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -shared",
+               string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       linker,
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3236,9 +2942,7 @@ MingwWin32OCXModuleHandler::GenerateWin32OCXModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3248,20 +2952,11 @@ MingwWin32OCXModuleHandler::GenerateWin32OCXModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linker;
-               if ( module.cplusplus )
-                       linker = "${gpp}";
-               else
-                       linker = "${gcc}";
-
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,console -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000 -shared",
+               string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000 -shared",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       linker,
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3296,9 +2991,7 @@ MingwWin32CUIModuleHandler::GenerateWin32CUIModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3308,20 +3001,11 @@ MingwWin32CUIModuleHandler::GenerateWin32CUIModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linker;
-               if ( module.cplusplus )
-                       linker = "${gpp}";
-               else
-                       linker = "${gcc}";
-
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,console -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000",
+               string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       linker,
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3356,9 +3040,7 @@ MingwWin32GUIModuleHandler::GenerateWin32GUIModuleTarget ()
 {
        string targetMacro ( GetTargetMacro (module) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3368,20 +3050,11 @@ MingwWin32GUIModuleHandler::GenerateWin32GUIModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linker;
-               if ( module.cplusplus )
-                       linker = "${gpp}";
-               else
-                       linker = "${gcc}";
-
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,windows -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000",
+               string linkerParameters = ssprintf ( "-subsystem=windows -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       linker,
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -3429,24 +3102,24 @@ MingwBootLoaderModuleHandler::GenerateBootLoaderModuleTarget ()
 
        fprintf ( fMakefile, "\t$(ECHO_LD)\n" );
 
-    if (Environment::GetArch() == "arm")
-    {
-        fprintf ( fMakefile,
-                 "\t${gcc} -Wl,--subsystem,native -Wl,--section-start,startup=0x8000 -o %s %s %s %s\n",
-                 backend->GetFullName ( junk_tmp ).c_str (),
-                 objectsMacro.c_str (),
-                 linkDepsMacro.c_str (),
-                 GetLinkerMacro ().c_str ());
-    }
-    else
-    {
-        fprintf ( fMakefile,
-                 "\t${gcc} -Wl,--subsystem,native -Wl,-Ttext,0x8000 -o %s %s %s %s\n",
-                 backend->GetFullName ( junk_tmp ).c_str (),
-                 objectsMacro.c_str (),
-                 linkDepsMacro.c_str (),
-                 GetLinkerMacro ().c_str ());
-    }
+       if (Environment::GetArch() == "arm")
+       {
+               fprintf ( fMakefile,
+                        "\t${gcc} -Wl,--subsystem,native -Wl,--section-start,startup=0x8000 -o %s %s %s %s\n",
+                        backend->GetFullName ( junk_tmp ).c_str (),
+                        objectsMacro.c_str (),
+                        linkDepsMacro.c_str (),
+                        GetLinkerMacro ().c_str ());
+       }
+       else
+       {
+               fprintf ( fMakefile,
+                        "\t${gcc} -Wl,--subsystem,native -Wl,-Ttext,0x8000 -o %s %s %s %s\n",
+                        backend->GetFullName ( junk_tmp ).c_str (),
+                        objectsMacro.c_str (),
+                        linkDepsMacro.c_str (),
+                        GetLinkerMacro ().c_str ());
+       }
        fprintf ( fMakefile,
                  "\t${objcopy} -O binary %s $@\n",
                  backend->GetFullName ( junk_tmp ).c_str () );
@@ -3720,10 +3393,16 @@ MingwIsoModuleHandler::GenerateIsoModuleTarget ()
                vSourceFiles.push_back ( srcunattend );
 
        // bootsector
-       const Module* bootModule;
-       bootModule = module.project.LocateModule ( module.type == IsoRegTest
-                                                      ? "isobtrt"
-                                                      : "isoboot" );
+       const Module* bootModule = module.bootSector->bootSectorModule;
+
+       if (!bootModule)
+       {
+               throw InvalidOperationException ( module.node.location.c_str(),
+                                                                                 0,
+                                                                                 "Invalid bootsector. module '%s' requires <bootsector>",
+                                                                                 module.name.c_str ());
+       }
+
        const FileLocation *isoboot = bootModule->output;
        vSourceFiles.push_back ( *isoboot );
 
@@ -3734,22 +3413,14 @@ MingwIsoModuleHandler::GenerateIsoModuleTarget ()
        FileLocation reactosInf ( bootcdReactos.directory,
                                  bootcdReactos.relative_path,
                                  "reactos.inf" );
-    FileLocation vgafontsCab( bootcdReactos.directory,
-                              bootcdReactos.relative_path,
-                              "vgafonts.cab");
-    FileLocation vgafontsDir( SourceDirectory,
-                              "media" + sSep + "vgafonts",
-                              "" );
 
        vSourceFiles.push_back ( reactosDff );
 
-       string IsoName;
-
-       if (module.type == IsoRegTest)
-               IsoName = "ReactOS-RegTest.iso";
-       else
-               IsoName = "ReactOS.iso";
-
+       /* 
+               We use only the name and not full FileLocation(ouput) because Iso/LiveIso are an exception to the general rule.
+               Iso/LiveIso outputs are generated in code base root 
+       */
+       string IsoName = module.output->name;
 
        string sourceFiles = v2s ( backend, vSourceFiles, 5 );
 
@@ -3768,11 +3439,6 @@ MingwIsoModuleHandler::GenerateIsoModuleTarget ()
                  sourceFiles.c_str (),
                  cdFiles.c_str (),
                  cdDirectories.c_str () );
-       fprintf ( fMakefile, "\t$(ECHO_CABMAN)\n" );
-    fprintf ( fMakefile,
-              "\t$(Q)$(CABMAN_TARGET) -M raw -S %s %s\\*.bin\n",      // Escape the asterisk for Make
-              backend->GetFullName ( vgafontsCab ).c_str (),
-              backend->GetFullName ( vgafontsDir ).c_str ());
        fprintf ( fMakefile,
                  "\t$(Q)$(CABMAN_TARGET) -C %s -L %s -I -P $(OUTPUT)\n",
                  backend->GetFullName ( reactosDff ).c_str (),
@@ -3918,15 +3584,24 @@ MingwLiveIsoModuleHandler::GenerateLiveIsoModuleTarget ()
 
        string IsoName;
 
-       const Module* bootModule;
-       bootModule = module.project.LocateModule ( module.name == "livecdregtest"
-                                                      ? "isobtrt"
-                                                      : "isoboot" );
+       // bootsector
+       const Module* bootModule = module.bootSector->bootSectorModule;
+
+       if (!bootModule)
+       {
+               throw InvalidOperationException ( module.node.location.c_str(),
+                                                                                 0,
+                                                                                 "Invalid bootsector. module '%s' requires <bootsector>",
+                                                                                 module.name.c_str ());
+       }
+
        const FileLocation *isoboot = bootModule->output;
-       if (module.name == "livecdregtest")
-               IsoName = "ReactOS-LiveCD-RegTest.iso";
-       else
-               IsoName = "ReactOS-LiveCD.iso";
+
+       /* 
+               We use only the name and not full FileLocation(ouput) because Iso/LiveIso are an exception to the general rule.
+               Iso/LiveIso outputs are generated in code base root 
+       */
+       IsoName = module.output->name;
 
        string reactosDirectory = "reactos";
        string livecdReactosNoFixup = livecdDirectory + sSep + reactosDirectory;
@@ -3987,9 +3662,7 @@ MingwTestModuleHandler::GenerateTestModuleTarget ()
 {
        string targetMacro ( GetTargetMacro ( module ) );
        string workingDirectory = GetWorkingDirectory ( );
-       string objectsMacro = GetObjectsMacro ( module );
        string linkDepsMacro = GetLinkingDependenciesMacro ();
-       string libsMacro = GetLibsMacro ();
 
        GenerateImportLibraryTargetIfNeeded ();
 
@@ -3999,20 +3672,11 @@ MingwTestModuleHandler::GenerateTestModuleTarget ()
 
                string dependencies = linkDepsMacro + " " + objectsMacro;
 
-               string linker;
-               if ( module.cplusplus )
-                       linker = "${gpp}";
-               else
-                       linker = "${gcc}";
-
-               string linkerParameters = ssprintf ( "-Wl,--subsystem,console -Wl,--entry,%s -Wl,--image-base,%s -Wl,--file-alignment,0x1000 -Wl,--section-alignment,0x1000",
+               string linkerParameters = ssprintf ( "-subsystem=console -entry=%s -image-base=%s -file-alignment=0x1000 -section-alignment=0x1000",
                                                     module.GetEntryPoint(true).c_str (),
                                                     module.baseaddress.c_str () );
                GenerateLinkerCommand ( dependencies,
-                                       linker,
                                        linkerParameters,
-                                       objectsMacro,
-                                       libsMacro,
                                        "" );
        }
        else
@@ -4076,6 +3740,19 @@ MingwAliasModuleHandler::Process ()
 {
 }
 
+MingwMessageHeaderModuleHandler::MingwMessageHeaderModuleHandler (
+       const Module& module_ )
+
+       : MingwModuleHandler ( module_ )
+{
+}
+
+void
+MingwMessageHeaderModuleHandler::Process ()
+{
+       GenerateRules ();
+}
+
 MingwIdlHeaderModuleHandler::MingwIdlHeaderModuleHandler (
        const Module& module_ )
 
@@ -4089,6 +3766,32 @@ MingwIdlHeaderModuleHandler::Process ()
        GenerateRules ();
 }
 
+MingwCabinetModuleHandler::MingwCabinetModuleHandler (
+       const Module& module_ )
+
+       : MingwModuleHandler ( module_ )
+{
+}
+
+void
+MingwCabinetModuleHandler::Process ()
+{
+       string targetMacro ( GetTargetMacro (module) );
+
+       GenerateRules ();
+       
+       const FileLocation *target_file = GetTargetFilename ( module, NULL );
+       fprintf ( fMakefile, "%s: $(CABMAN_TARGET) | %s\n",
+                 targetMacro.c_str (),
+                 backend->GetFullPath ( *target_file ).c_str () );
+
+       fprintf ( fMakefile, "\t$(ECHO_CABMAN)\n" );
+       fprintf ( fMakefile,
+                 "\t$(Q)$(CABMAN_TARGET) -M raw -S %s $(%s_SOURCES)\n",      // Escape the asterisk for Make
+                 targetMacro.c_str (),
+                         module.name.c_str());
+}
+
 MingwElfExecutableModuleHandler::MingwElfExecutableModuleHandler (
        const Module& module_ )