]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/msw.t
added missing const
[wxWidgets.git] / distrib / msw / tmake / msw.t
index 48b489b93cfb1bd832f093e9005cf0d747a15b56..32681accc9d3c93249bbc588e210ea3c2267e957 100644 (file)
     IncludeTemplate("filelist.t");
 
     #! find all our sources
-    $project{"COMMONOBJS"} .= "parser.o ";
-    $project{"COMMONDEPS"} .= "parser.d ";
-
     foreach $file (sort keys %wxGeneric) {
         next if $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MSW_SOURCES"} .= "generic/" . $file . " ";
         $project{"GENERICOBJS"} .= $fileobj . " ";
-        $project{"GENERICDEPS"} .= $filedep . " "
     }
 
     foreach $file (sort keys %wxCommon) {
-        next if $wxCommon{$file} =~ /\bR\b/;
+        next if $wxCommon{$file} =~ /\b(R|U|16)\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MSW_SOURCES"} .= "common/" . $file . " ";
         $project{"COMMONOBJS"} .= $fileobj . " ";
-        $project{"COMMONDEPS"} .= $filedep . " "
     }
 
     foreach $file (sort keys %wxMSW) {
-        #! OLE files can'be compiled with mingw32 yet
-        next if $wxMSW{$file} =~ /\b(O|16)\b/;
+        next if $wxMSW{$file} =~ /\b16\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
-        $project{"MSW_SOURCES"} .= "msw/" . $file . " ";
-        $project{"GUIOBJS"} .= $fileobj . " ";
-        $project{"GUIDEPS"} .= $filedep . " "
+        if( $wxMSW{$file} =~ /\bO\b/ ) {
+            $project{"MSW_SOURCES"} .= "msw/ole/" . $file . " ";
+            $project{"OLEOBJS"} .= $fileobj . " ";
+        } else {
+            $project{"MSW_SOURCES"} .= "msw/" . $file . " ";
+            $project{"GUIOBJS"} .= $fileobj . " ";
+
+            if ( $wxMSW{$file} =~ /\bL\b/ ) {
+                $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
+            }
+        }
     }
 
     foreach $file (sort keys %wxHTML) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MSW_SOURCES"} .= "html/" . $file . " ";
         $project{"HTMLOBJS"} .= $fileobj . " ";
-        $project{"HTMLDEPS"} .= $filedep . " "
     }
     #! find all our headers
     foreach $file (sort keys %wxWXINCLUDE) {
         $project{"MSW_HEADERS"} .= "msw/" . $file . " "
     }
 
+    foreach $file (sort keys %wxOLEINCLUDE) {
+        $project{"MSW_HEADERS"} .= "msw/ole/" . $file . " ";
+    }
+
     foreach $file (sort keys %wxGENERICINCLUDE) {
         $project{"MSW_HEADERS"} .= "generic/" . $file . " "
     }
@@ -83,7 +84,7 @@
         $project{"MSW_HEADERS"} .= "protocol/" . $file . " "
     }
 #$}
-# This file was automatically generated by tmake at #$ Now()
+# This file was automatically generated by tmake 
 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MSW.T!
 ALL_SOURCES = \
                #$ ExpandList("MSW_SOURCES");
@@ -94,35 +95,18 @@ ALL_HEADERS = \
 COMMONOBJS = \
                #$ ExpandList("COMMONOBJS");
 
-COMMONDEPS = \
-               #$ ExpandList("COMMONDEPS");
-
 GENERICOBJS = \
                #$ ExpandList("GENERICOBJS");
 
-GENERICDEPS = \
-               #$ ExpandList("GENERICDEPS");
-
 GUIOBJS = \
                #$ ExpandList("GUIOBJS");
 
-GUIDEPS = \
-               #$ ExpandList("GUIDEPS");
-
-UNIXOBJS = \
-               #$ ExpandList("UNIXOBJS");
-
-UNIXDEPS = \
-               #$ ExpandList("UNIXDEPS");
+GUI_LOWLEVEL_OBJS = \
+               #$ ExpandList("GUI_LOWLEVEL_OBJS");
 
 HTMLOBJS = \
                #$ ExpandList("HTMLOBJS");
 
-HTMLDEPS = \
-               #$ ExpandList("HTMLDEPS");
-
-IODBCOBJS = \
-               #$ ExpandList("IODBCOBJS");
+OLEOBJS = \
+               #$ ExpandList("OLEOBJS");
 
-IODBCDEPS = \
-               #$ ExpandList("IODBCDEPS");