X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2224580a415da12d7c453943c4ae4a1b58ecd369..e5aa044ba4c5473c432581b5364d7f1bb25ad4ff:/distrib/msw/tmake/base.t diff --git a/distrib/msw/tmake/base.t b/distrib/msw/tmake/base.t index 420de365ef..e35baf6f9e 100644 --- a/distrib/msw/tmake/base.t +++ b/distrib/msw/tmake/base.t @@ -1,6 +1,6 @@ #!################################################################################ #! File: base.t -#! Purpose: tmake template file from which src/common/files.lst containing the +#! Purpose: tmake template file from which src/files.lst containing the #! list of files for wxBase library is generated by tmake #! Author: Vadim Zeitlin #! Created: 27.01.00 @@ -15,33 +15,36 @@ #! find all our sources foreach $file (sort keys %wxBase) { ($fileobj = $file) =~ s/cp?p?$/\o/; - ($filedep = $file) =~ s/cp?p?$/\d/; $project{"BASE_SOURCES"} .= "common/" . $file . " "; $project{"BASE_OBJS"} .= $fileobj . " "; - $project{"BASE_DEPS"} .= $filedep . " "; } foreach $file (sort keys %wxCommon) { next unless $wxCommon{$file} =~ /\bB\b/; ($fileobj = $file) =~ s/cp?p?$/\o/; - ($filedep = $file) =~ s/cp?p?$/\d/; $project{"BASE_SOURCES"} .= "common/" . $file . " "; $project{"BASE_OBJS"} .= $fileobj . " "; - $project{"BASE_DEPS"} .= $filedep . " "; } foreach $file (sort keys %wxUNIX) { next unless $wxUNIX{$file} =~ /\bB\b/; ($fileobj = $file) =~ s/cp?p?$/\o/; - ($filedep = $file) =~ s/cp?p?$/\d/; $project{"BASE_SOURCES"} .= "unix/" . $file . " "; $project{"BASE_UNIX_OBJS"} .= $fileobj . " "; - $project{"BASE_UNIX_DEPS"} .= $filedep . " "; + } + + foreach $file (sort keys %wxMSW) { + next unless $wxMSW{$file} =~ /\bB\b/; + + ($fileobj = $file) =~ s/cp?p?$/\o/; + + $project{"BASE_SOURCES"} .= "msw/" . $file . " "; + $project{"BASE_MSW_OBJS"} .= $fileobj . " "; } #! find all our headers @@ -52,18 +55,24 @@ } foreach $file (sort keys %wxUNIXINCLUDE) { - next unless $wxWXINCLUDE{$file} =~ /\bB\b/; + next unless $wxUNIXINCLUDE{$file} =~ /\bB\b/; $project{"BASE_HEADERS"} .= "unix/" . $file . " " } + foreach $file (sort keys %wxMSWINCLUDE) { + next unless $wxMSWINCLUDE{$file} =~ /\bB\b/; + + $project{"BASE_HEADERS"} .= "msw/" . $file . " " + } + foreach $file (sort keys %wxPROTOCOLINCLUDE) { next unless $wxPROTOCOLINCLUDE{$file} =~ /\bB\b/; $project{"BASE_HEADERS"} .= "protocol/" . $file . " " } #$} -# This file was automatically generated by tmake at #$ Now() +# This file was automatically generated by tmake # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE BASE.T! ALL_SOURCES = \ #$ ExpandList("BASE_SOURCES"); @@ -74,11 +83,10 @@ ALL_HEADERS = \ BASE_OBJS = \ #$ ExpandList("BASE_OBJS"); -BASE_DEPS = \ - #$ ExpandList("BASE_DEPS"); - BASE_UNIX_OBJS = \ #$ ExpandList("BASE_UNIX_OBJS"); -BASE_DEPS = \ - #$ ExpandList("BASE_DEPS"); +BASE_MSW_OBJS = \ + #$ ExpandList("BASE_MSW_OBJS"); + +