]> git.saurik.com Git - wxWidgets.git/commitdiff
added os2.t
authorStefan Neis <Stefan.Neis@t-online.de>
Tue, 1 Feb 2000 23:43:02 +0000 (23:43 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Tue, 1 Feb 2000 23:43:02 +0000 (23:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5792 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/msw/tmake/motif.t
distrib/msw/tmake/os2.t [new file with mode: 0644]

index 7334fe4a8ba3bf6508bfe67bac70ea40d98da6b9..95c6f3a39166ce1c6f3fb5e85812a0980f3e2f33 100644 (file)
@@ -29,7 +29,7 @@
     }
 
     foreach $file (sort keys %wxCommon) {
-        next if $wxCommon{$file} =~ /\bR\b/;
+        next if $wxCommon{$file} =~ /\bX\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
         ($filedep = $file) =~ s/cp?p?$/\d/;
@@ -127,9 +127,3 @@ HTMLOBJS = \
 
 HTMLDEPS = \
                #$ ExpandList("HTMLDEPS");
-
-IODBCOBJS = \
-               #$ ExpandList("IODBCOBJS");
-
-IODBCDEPS = \
-               #$ ExpandList("IODBCDEPS");
diff --git a/distrib/msw/tmake/os2.t b/distrib/msw/tmake/os2.t
new file mode 100644 (file)
index 0000000..a6f11a4
--- /dev/null
@@ -0,0 +1,117 @@
+#!################################################################################
+#! File:    os2.t
+#! Purpose: tmake template file from which src/os2/files.lst containing the
+#!          list of files for wxPM library is generated by tmake
+#! Author:  Vadim Zeitlin
+#!          modified by Stefan Neis for OS/2
+#! Created: 28.01.00
+#! Version: $Id$
+#!################################################################################
+#${
+    #! include the code which parses filelist.txt file and initializes
+    #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxGTK, %wxMOTIF and
+    #! %wxOS2PM hashes.
+    IncludeTemplate("filelist.t");
+
+    #! find all our sources
+    $project{"COMMONOBJS"} .= "parser.o ";
+    $project{"COMMONDEPS"} .= "parser.d ";
+
+    foreach $file (sort keys %wxGeneric) {
+        next if $wxGeneric{$file} =~ /\bP\b/;
+
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+        ($filedep = $file) =~ s/cp?p?$/\d/;
+
+        $project{"OS2PM_SOURCES"} .= "generic/" . $file . " ";
+        $project{"GENERICOBJS"} .= $fileobj . " ";
+        $project{"GENERICDEPS"} .= $filedep . " "
+    }
+
+    foreach $file (sort keys %wxCommon) {
+        next if $wxCommon{$file} =~ /\bP\b/;
+
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+        ($filedep = $file) =~ s/cp?p?$/\d/;
+
+        $project{"OS2PM_SOURCES"} .= "common/" . $file . " ";
+        $project{"COMMONOBJS"} .= $fileobj . " ";
+        $project{"COMMONDEPS"} .= $filedep . " "
+    }
+
+    foreach $file (sort keys %wxOS2PM) {
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+        ($filedep = $file) =~ s/cp?p?$/\d/;
+
+        $project{"OS2PM_SOURCES"} .= "os2/" . $file . " ";
+        $project{"GUIOBJS"} .= $fileobj . " ";
+        $project{"GUIDEPS"} .= $filedep . " "
+    }
+
+    foreach $file (sort keys %wxHTML) {
+        ($fileobj = $file) =~ s/cp?p?$/\o/;
+        ($filedep = $file) =~ s/cp?p?$/\d/;
+
+        $project{"OS2PM_SOURCES"} .= "html/" . $file . " ";
+        $project{"HTMLOBJS"} .= $fileobj . " ";
+        $project{"HTMLDEPS"} .= $filedep . " "
+    }
+    #! find all our headers
+    foreach $file (sort keys %wxWXINCLUDE) {
+        $project{"OS2PM_HEADERS"} .= $file . " "
+    }
+
+    foreach $file (sort keys %wxOS2PMINCLUDE) {
+        $project{"OS2PM_HEADERS"} .= "os2/" . $file . " "
+    }
+
+    foreach $file (sort keys %wxGENERICINCLUDE) {
+        $project{"OS2PM_HEADERS"} .= "generic/" . $file . " "
+    }
+
+    foreach $file (sort keys %wxHTMLINCLUDE) {
+        $project{"OS2PM_HEADERS"} .= "html/" . $file . " "
+    }
+
+    foreach $file (sort keys %wxPROTOCOLINCLUDE) {
+        $project{"OS2PM_HEADERS"} .= "protocol/" . $file . " "
+    }
+#$}
+# This file was automatically generated by tmake at #$ Now()
+# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE OS2.T!
+ALL_SOURCES = \
+               #$ ExpandList("OS2PM_SOURCES");
+
+ALL_HEADERS = \
+               #$ ExpandList("OS2PM_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");
+
+HTMLOBJS = \
+               #$ ExpandList("HTMLOBJS");
+
+HTMLDEPS = \
+               #$ ExpandList("HTMLDEPS");
+