1 #!################################################################################
3 #! Purpose: tmake template file from which src/x11/files.lst containing the
4 #! list of files for wxMotif library is generated by tmake
5 #! Author: Vadim Zeitlin
8 #!################################################################################
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxMOTIF, %wxX11 and
13 IncludeTemplate("filelist.t");
15 #! find all our sources
16 $project{"COMMONOBJS"} .= "parser.o ";
18 foreach $file (sort keys %wxX11) {
19 ($fileobj = $file) =~ s/cp?p?$/\o/;
21 $project{"X11_SOURCES"} .= "x11/" . $file . " ";
22 $project{"GUIOBJS"} .= $fileobj . " ";
25 foreach $file (sort keys %wxGeneric) {
26 next if $wxGeneric{$file} =~ /\bNotX11\b/;
28 ($fileobj = $file) =~ s/cp?p?$/\o/;
30 $project{"X11_SOURCES"} .= "generic/" . $file . " ";
31 $project{"GENERICOBJS"} .= $fileobj . " ";
34 foreach $file (sort keys %wxCommon) {
35 next if $wxCommon{$file} =~ /\bNotX11\b/;
37 ($fileobj = $file) =~ s/cp?p?$/\o/;
39 $project{"X11_SOURCES"} .= "common/" . $file . " ";
40 $project{"COMMONOBJS"} .= $fileobj . " ";
43 foreach $file (sort keys %wxUNIX) {
44 ($fileobj = $file) =~ s/cp?p?$/\o/;
46 $project{"X11_SOURCES"} .= "unix/" . $file . " ";
47 $project{"UNIXOBJS"} .= $fileobj . " ";
50 foreach $file (sort keys %wxHTML) {
51 ($fileobj = $file) =~ s/cp?p?$/\o/;
53 $project{"X11_SOURCES"} .= "html/" . $file . " ";
54 $project{"HTMLOBJS"} .= $fileobj . " ";
56 #! find all our headers
57 foreach $file (sort keys %wxWXINCLUDE) {
58 next if $wxWXINCLUDE{$file} =~ /\bNotX11\b/;
60 $project{"X11_HEADERS"} .= $file . " "
63 foreach $file (sort keys %wxX11INCLUDE) {
64 $project{"X11_HEADERS"} .= "x11/" . $file . " "
67 foreach $file (sort keys %wxUNIVINCLUDE) {
68 $project{"X11_HEADERS"} .= "univ/" . $file . " ";
71 foreach $file (sort keys %wxGENERICINCLUDE) {
72 $project{"X11_HEADERS"} .= "generic/" . $file . " "
75 foreach $file (sort keys %wxUNIXINCLUDE) {
76 $project{"X11_HEADERS"} .= "unix/" . $file . " "
79 foreach $file (sort keys %wxHTMLINCLUDE) {
80 $project{"X11_HEADERS"} .= "html/" . $file . " "
83 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
84 $project{"X11_HEADERS"} .= "protocol/" . $file . " "
87 # This file was automatically generated by tmake
88 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE X11.T!
90 #$ ExpandList("X11_SOURCES");
93 #$ ExpandList("X11_HEADERS");
96 #$ ExpandList("GUIOBJS");
99 #$ ExpandList("COMMONOBJS");
102 #$ ExpandList("GENERICOBJS");
105 #$ ExpandList("UNIXOBJS");
108 #$ ExpandList("HTMLOBJS");