]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/unx.t
added HTML printing
[wxWidgets.git] / distrib / msw / tmake / unx.t
index 6e7d6cd0ceeb125191ba1c0b857cdc60a7a9ad97..13b1f1e07d33d0df21cbca4d7b4f12915ee6ce6e 100644 (file)
@@ -12,7 +12,7 @@
     IncludeTemplate("filelist.t");
 
     #! Generic
-    
+
     foreach $file (sort keys %wxGeneric) {
         #! native wxDirDlg can't be compiled due to GnuWin32/OLE limitations,
         #! so take the generic version
         $project{"WXMOTIF_GENERICDEPS"} .= $file2 . " "
     }
 
+    #! Base
+
+    foreach $file (sort keys %wxBase) {
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+        ($filedep = $file) =~ s/cp?p?$/\d/;
+
+        $project{"BASE_OBJS"} .= $fileobj . " ";
+        $project{"BASE_DEPS"} .= $filedep . " ";
+    }
+
     #! Common
-    
+
     foreach $file (sort keys %wxCommon) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
         ($filedep = $file) =~ s/cp?p?$/\d/;
@@ -60,9 +70,6 @@
             $project{"BASE_DEPS"} .= $filedep . " ";
         }
 
-        #! if it's the wxBase-only file, nothing more to do with it
-        next if $wxCommon{$file} =~ /\bBO\b/;
-
         if ( $wxCommon{$file} !~ /\bR\b/ ) {    #! unless not for GTK
             $project{"WXGTK_COMMONOBJS"} .= $fileobj . " ";
             $project{"WXGTK_COMMONDEPS"} .= $filedep . " "
@@ -80,7 +87,7 @@
     }
 
     #! GUI
-    
+
     foreach $file (sort keys %wxMSW) {
         #! Mingw32 doesn't have the OLE headers and has some troubles with
         #! socket code