]>
Commit | Line | Data |
---|---|---|
7c7b95f4 JS |
1 | #!################################################################################ |
2 | #! File: x11.t | |
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 | |
6 | #! Created: 28.01.00 | |
7 | #! Version: $Id$ | |
8 | #!################################################################################ | |
9 | #${ | |
10 | #! include the code which parses filelist.txt file and initializes | |
11 | #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxMOTIF, %wxX11 and | |
12 | #! %wxOS2PM hashes. | |
13 | IncludeTemplate("filelist.t"); | |
14 | ||
15 | #! find all our sources | |
be0a4b9a RR |
16 | foreach $file (sort keys %wxX11) { |
17 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
18 | ||
19 | $project{"X11_SOURCES"} .= "x11/" . $file . " "; | |
20 | $project{"GUIOBJS"} .= $fileobj . " "; | |
21 | } | |
22 | ||
7c7b95f4 | 23 | foreach $file (sort keys %wxGeneric) { |
45ce82f3 | 24 | next if $wxGeneric{$file} =~ /\bNotX11\b/; |
7c7b95f4 JS |
25 | |
26 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
27 | ||
28 | $project{"X11_SOURCES"} .= "generic/" . $file . " "; | |
29 | $project{"GENERICOBJS"} .= $fileobj . " "; | |
30 | } | |
31 | ||
32 | foreach $file (sort keys %wxCommon) { | |
45ce82f3 | 33 | next if $wxCommon{$file} =~ /\bNotX11\b/; |
7c7b95f4 JS |
34 | |
35 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
36 | ||
37 | $project{"X11_SOURCES"} .= "common/" . $file . " "; | |
38 | $project{"COMMONOBJS"} .= $fileobj . " "; | |
39 | } | |
40 | ||
7c7b95f4 JS |
41 | foreach $file (sort keys %wxUNIX) { |
42 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
43 | ||
44 | $project{"X11_SOURCES"} .= "unix/" . $file . " "; | |
45 | $project{"UNIXOBJS"} .= $fileobj . " "; | |
46 | } | |
47 | ||
48 | foreach $file (sort keys %wxHTML) { | |
49 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
50 | ||
51 | $project{"X11_SOURCES"} .= "html/" . $file . " "; | |
52 | $project{"HTMLOBJS"} .= $fileobj . " "; | |
53 | } | |
54 | #! find all our headers | |
55 | foreach $file (sort keys %wxWXINCLUDE) { | |
45ce82f3 | 56 | next if $wxWXINCLUDE{$file} =~ /\bNotX11\b/; |
7c7b95f4 JS |
57 | |
58 | $project{"X11_HEADERS"} .= $file . " " | |
59 | } | |
60 | ||
61 | foreach $file (sort keys %wxX11INCLUDE) { | |
62 | $project{"X11_HEADERS"} .= "x11/" . $file . " " | |
63 | } | |
64 | ||
be0a4b9a RR |
65 | foreach $file (sort keys %wxUNIVINCLUDE) { |
66 | $project{"X11_HEADERS"} .= "univ/" . $file . " "; | |
67 | } | |
68 | ||
7c7b95f4 JS |
69 | foreach $file (sort keys %wxGENERICINCLUDE) { |
70 | $project{"X11_HEADERS"} .= "generic/" . $file . " " | |
71 | } | |
72 | ||
73 | foreach $file (sort keys %wxUNIXINCLUDE) { | |
74 | $project{"X11_HEADERS"} .= "unix/" . $file . " " | |
75 | } | |
76 | ||
77 | foreach $file (sort keys %wxHTMLINCLUDE) { | |
78 | $project{"X11_HEADERS"} .= "html/" . $file . " " | |
79 | } | |
80 | ||
81 | foreach $file (sort keys %wxPROTOCOLINCLUDE) { | |
82 | $project{"X11_HEADERS"} .= "protocol/" . $file . " " | |
83 | } | |
84 | #$} | |
85 | # This file was automatically generated by tmake | |
45ce82f3 | 86 | # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE X11.T! |
7c7b95f4 JS |
87 | ALL_SOURCES = \ |
88 | #$ ExpandList("X11_SOURCES"); | |
89 | ||
90 | ALL_HEADERS = \ | |
91 | #$ ExpandList("X11_HEADERS"); | |
92 | ||
5f02e467 | 93 | GUI_LOWLEVEL_OBJS = \ |
be0a4b9a RR |
94 | #$ ExpandList("GUIOBJS"); |
95 | ||
7c7b95f4 JS |
96 | COMMONOBJS = \ |
97 | #$ ExpandList("COMMONOBJS"); | |
98 | ||
99 | GENERICOBJS = \ | |
100 | #$ ExpandList("GENERICOBJS"); | |
101 | ||
7c7b95f4 JS |
102 | UNIXOBJS = \ |
103 | #$ ExpandList("UNIXOBJS"); | |
104 | ||
105 | HTMLOBJS = \ | |
106 | #$ ExpandList("HTMLOBJS"); | |
107 |