IncludeTemplate("filelist.t");
#! find all our sources
- $project{"COMMONOBJS"} .= "parser.o ";
-
foreach $file (sort keys %wxGeneric) {
- next if $wxGeneric{$file} =~ /\bR\b/;
+ next if $wxGeneric{$file} =~ /\bNotGTK\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
}
foreach $file (sort keys %wxCommon) {
- next if $wxCommon{$file} =~ /\bR\b/;
+ next if $wxCommon{$file} =~ /\bNotGTK\b/;
($fileobj = $file) =~ s/cp?p?$/\o/;
#! find all our headers
foreach $file (sort keys %wxWXINCLUDE) {
- next if $wxWXINCLUDE{$file} =~ /\bR\b/;
+ next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/;
$project{"GTK_HEADERS"} .= $file . " "
}
}
foreach $file (sort keys %wxGENERICINCLUDE) {
+ next if $wxGENERICINCLUDE{$file} =~ /\bNotGTK\b/;
+
$project{"GTK_HEADERS"} .= "generic/" . $file . " "
}