]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/gtk.t
fixes for setup.h handling in Watcom makefiles
[wxWidgets.git] / distrib / msw / tmake / gtk.t
index 0a1dd141dfe4be86e75dddbfd5581455b2715519..7d7f7c9802119c05ee30c19175e38b0e10c0dbaf 100644 (file)
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
         $project{"GTK_SOURCES"} .= "generic/" . $file . " ";
-        $project{"GENERICOBJS"} .= $fileobj . " ";
+        $project{"GUIOBJS"} .= $fileobj . " ";
+
+        #! also add it to the list of object files used by wxUniv if there
+        #! is no file with the same name among wxUniv own objects
+        my $filereal = $file;
+        if ( $file =~ /^([^.]+)g.cpp$/ ) {
+            $filereal = "$1.cpp";
+        }
+        if ( !exists $wxUNIV{$filereal} ) {
+            $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
+        }
     }
 
     foreach $file (sort keys %wxCommon) {
@@ -96,9 +106,6 @@ ALL_HEADERS = \
 COMMONOBJS = \
                #$ ExpandList("COMMONOBJS");
 
-GENERICOBJS = \
-               #$ ExpandList("GENERICOBJS");
-
 GUIOBJS = \
                #$ ExpandList("GUIOBJS");