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 foreach $file (sort keys %wxX11) {
17 ($fileobj = $file) =~ s/cp?p?$/\o/;
19 $project{"X11_SOURCES"} .= "x11/" . $file . " ";
20 $project{"GUIOBJS"} .= $fileobj . " ";
23 foreach $file (sort keys %wxGeneric) {
24 next if $wxGeneric{$file} =~ /\bNotX11\b/;
26 ($fileobj = $file) =~ s/cp?p?$/\o/;
28 $project{"X11_SOURCES"} .= "generic/" . $file . " ";
29 $project{"GENERICOBJS"} .= $fileobj . " ";
32 foreach $file (sort keys %wxCommon) {
33 next if $wxCommon{$file} =~ /\bNotX11\b/;
35 ($fileobj = $file) =~ s/cp?p?$/\o/;
37 $project{"X11_SOURCES"} .= "common/" . $file . " ";
38 $project{"COMMONOBJS"} .= $fileobj . " ";
41 foreach $file (sort keys %wxUNIX) {
42 ($fileobj = $file) =~ s/cp?p?$/\o/;
44 $project{"X11_SOURCES"} .= "unix/" . $file . " ";
45 $project{"UNIXOBJS"} .= $fileobj . " ";
48 foreach $file (sort keys %wxHTML) {
49 ($fileobj = $file) =~ s/cp?p?$/\o/;
51 $project{"X11_SOURCES"} .= "html/" . $file . " ";
52 $project{"HTMLOBJS"} .= $fileobj . " ";
54 #! find all our headers
55 foreach $file (sort keys %wxWXINCLUDE) {
56 next if $wxWXINCLUDE{$file} =~ /\bNotX11\b/;
58 $project{"X11_HEADERS"} .= $file . " "
61 foreach $file (sort keys %wxX11INCLUDE) {
62 $project{"X11_HEADERS"} .= "x11/" . $file . " "
65 foreach $file (sort keys %wxUNIVINCLUDE) {
66 $project{"X11_HEADERS"} .= "univ/" . $file . " ";
69 foreach $file (sort keys %wxGENERICINCLUDE) {
70 $project{"X11_HEADERS"} .= "generic/" . $file . " "
73 foreach $file (sort keys %wxUNIXINCLUDE) {
74 $project{"X11_HEADERS"} .= "unix/" . $file . " "
77 foreach $file (sort keys %wxHTMLINCLUDE) {
78 $project{"X11_HEADERS"} .= "html/" . $file . " "
81 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
82 $project{"X11_HEADERS"} .= "protocol/" . $file . " "
85 # This file was automatically generated by tmake
86 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE X11.T!
88 #$ ExpandList("X11_SOURCES");
91 #$ ExpandList("X11_HEADERS");
94 #$ ExpandList("GUIOBJS");
97 #$ ExpandList("COMMONOBJS");
100 #$ ExpandList("GENERICOBJS");
103 #$ ExpandList("UNIXOBJS");
106 #$ ExpandList("HTMLOBJS");