IncludeTemplate("filelist.t");
#! find all our sources
- $project{"COMMONOBJS"} .= "parser.o ";
-
foreach $file (sort keys %wxGeneric) {
next if $wxGeneric{$file} =~ /\b(PS|G|U|16)\b/;
}
foreach $file (sort keys %wxCommon) {
- next if $wxCommon{$file} =~ /\bR\b/;
+ next if $wxCommon{$file} =~ /\b(R|U|16)\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
} else {
$project{"MSW_SOURCES"} .= "msw/" . $file . " ";
$project{"GUIOBJS"} .= $fileobj . " ";
+
+ if ( $wxMSW{$file} =~ /\bL\b/ ) {
+ $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
+ }
}
}
$project{"MSW_HEADERS"} .= "msw/" . $file . " "
}
+ foreach $file (sort keys %wxOLEINCLUDE) {
+ $project{"MSW_HEADERS"} .= "msw/ole/" . $file . " ";
+ }
+
foreach $file (sort keys %wxGENERICINCLUDE) {
$project{"MSW_HEADERS"} .= "generic/" . $file . " "
}
$project{"MSW_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 MSW.T!
ALL_SOURCES = \
#$ ExpandList("MSW_SOURCES");
GUIOBJS = \
#$ ExpandList("GUIOBJS");
+GUI_LOWLEVEL_OBJS = \
+ #$ ExpandList("GUI_LOWLEVEL_OBJS");
+
HTMLOBJS = \
#$ ExpandList("HTMLOBJS");