]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/mgl.t
More changes for building the regex lib
[wxWidgets.git] / distrib / msw / tmake / mgl.t
index 5596ab458e18e2422572de0e1abe74e043f2bc4d..ad1a8d1a427df755df7bb08648f8467a2f34d835 100644 (file)
 
     #! find all our sources
     $project{"COMMONOBJS"} .= "parser.o ";
-    $project{"COMMONDEPS"} .= "parser.d ";
 
     foreach $file (sort keys %wxGeneric) {
-        next if $wxGeneric{$file} =~ /\bR\b/;
+        next if $wxGeneric{$file} =~ /\bNotMGL\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MGL_SOURCES"} .= "generic/" . $file . " ";
         $project{"GENERICOBJS"} .= $fileobj . " ";
-        $project{"GENERICDEPS"} .= $filedep . " "
     }
 
     foreach $file (sort keys %wxCommon) {
-        next if $wxCommon{$file} =~ /\bR\b/;
+        next if $wxCommon{$file} =~ /\bNotMGL\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MGL_SOURCES"} .= "common/" . $file . " ";
         $project{"COMMONOBJS"} .= $fileobj . " ";
-        $project{"COMMONDEPS"} .= $filedep . " "
     }
 
     foreach $file (sort keys %wxMGL) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MGL_SOURCES"} .= "mgl/" . $file . " ";
-        $project{"GUIOBJS"} .= $fileobj . " ";
-        $project{"GUIDEPS"} .= $filedep . " ";
+#!        $project{"GUIOBJS"} .= $fileobj . " ";
 
         if ( $wxMGL{$file} =~ /\bL\b/ ) {
             $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
-            $project{"GUI_LOWLEVEL_DEPS"} .= $filedep . " ";
         }
     }
 
     foreach $file (sort keys %wxUNIX) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MGL_SOURCES"} .= "unix/" . $file . " ";
         $project{"UNIXOBJS"} .= $fileobj . " ";
-        $project{"UNIXDEPS"} .= $filedep . " "
     }
 
     foreach $file (sort keys %wxHTML) {
         ($fileobj = $file) =~ s/cp?p?$/\o/;
-        ($filedep = $file) =~ s/cp?p?$/\d/;
 
         $project{"MGL_SOURCES"} .= "html/" . $file . " ";
         $project{"HTMLOBJS"} .= $fileobj . " ";
-        $project{"HTMLDEPS"} .= $filedep . " "
     }
 
     #! find all our headers
@@ -106,36 +94,18 @@ ALL_HEADERS = \
 COMMONOBJS = \
                #$ ExpandList("COMMONOBJS");
 
-COMMONDEPS = \
-               #$ ExpandList("COMMONDEPS");
-
 GENERICOBJS = \
                #$ ExpandList("GENERICOBJS");
 
-GENERICDEPS = \
-               #$ ExpandList("GENERICDEPS");
-
-GUIOBJS = \
-               #$ ExpandList("GUIOBJS");
-
-GUIDEPS = \
-               #$ ExpandList("GUIDEPS");
-
+#!GUIOBJS = \
+#!             #$ ExpandList("GUIOBJS");
+#!
 GUI_LOWLEVEL_OBJS = \
                #$ ExpandList("GUI_LOWLEVEL_OBJS");
 
-GUI_LOWLEVEL_DEPS = \
-               #$ ExpandList("GUI_LOWLEVEL_DEPS");
-
 UNIXOBJS = \
                #$ ExpandList("UNIXOBJS");
 
-UNIXDEPS = \
-               #$ ExpandList("UNIXDEPS");
-
 HTMLOBJS = \
                #$ ExpandList("HTMLOBJS");
 
-HTMLDEPS = \
-               #$ ExpandList("HTMLDEPS");
-