]> git.saurik.com Git - wxWidgets.git/blobdiff - distrib/msw/tmake/mgl.t
up to 2.8.0
[wxWidgets.git] / distrib / msw / tmake / mgl.t
index 51d108098eb4b3ae9196883ef14616a8b93d054b..56da38c49756a32d5bf13ad30a88d6a2312fbdf9 100644 (file)
@@ -1,7 +1,7 @@
 #!################################################################################
-#! File:    gtk.t
-#! Purpose: tmake template file from which src/gtk/files.lst containing the
-#!          list of files for wxGTK library is generated by tmake
+#! File:    mgl.t
+#! Purpose: tmake template file from which src/mgl/files.lst containing the
+#!          list of files for wxMGL library is generated by tmake
 #! Author:  Vadim Zeitlin
 #! Created: 28.01.00
 #! Version: $Id$
     IncludeTemplate("filelist.t");
 
     #! find all our sources
-    $project{"COMMONOBJS"} .= "parser.o ";
-    $project{"COMMONDEPS"} .= "parser.d ";
 
     foreach $file (sort keys %wxGeneric) {
         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} =~ /\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 . " ";
 
         if ( $wxMGL{$file} =~ /\bL\b/ ) {
             $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
-            $project{"GUI_LOWLEVEL_DEPS"} .= $filedep . " ";
         }
     }
 
     foreach $file (sort keys %wxUNIX) {
+        next if $wxUNIX{$file} =~ /\bNotMGL\b/;
+
         ($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
@@ -75,8 +64,8 @@
         $project{"MGL_HEADERS"} .= $file . " "
     }
 
-    foreach $file (sort keys %wxGTKINCLUDE) {
-        $project{"MGL_HEADERS"} .= "gtk/" . $file . " "
+    foreach $file (sort keys %wxMGLINCLUDE) {
+        $project{"MGL_HEADERS"} .= "mgl/" . $file . " "
     }
 
     foreach $file (sort keys %wxGENERICINCLUDE) {
@@ -95,8 +84,8 @@
         $project{"MGL_HEADERS"} .= "protocol/" . $file . " "
     }
 #$}
-# This file was automatically generated by tmake at #$ Now()
-# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
+# This file was automatically generated by tmake 
+# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE MGL.T!
 ALL_SOURCES = \
                #$ ExpandList("MGL_SOURCES");
 
@@ -106,36 +95,18 @@ ALL_HEADERS = \
 COMMONOBJS = \
                #$ ExpandList("COMMONOBJS");
 
-COMMONDEPS = \
-               #$ ExpandList("COMMONDEPS");
-
 GENERICOBJS = \
                #$ ExpandList("GENERICOBJS");
 
-GENERICDEPS = \
-               #$ ExpandList("GENERICDEPS");
-
 #!GUIOBJS = \
 #!             #$ ExpandList("GUIOBJS");
 #!
-#!GUIDEPS = \
-#!             #$ ExpandList("GUIDEPS");
-
 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");
-