]>
Commit | Line | Data |
---|---|---|
2224580a VZ |
1 | #!################################################################################ |
2 | #! File: gtk.t | |
3 | #! Purpose: tmake template file from which src/gtk/files.lst containing the | |
4 | #! list of files for wxGTK 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, %wxGTK, %wxMOTIF and | |
12 | #! %wxOS2PM hashes. | |
13 | IncludeTemplate("filelist.t"); | |
14 | ||
15 | #! find all our sources | |
16 | $project{"COMMONOBJS"} .= "parser.o "; | |
17 | $project{"COMMONDEPS"} .= "parser.d "; | |
18 | ||
19 | foreach $file (sort keys %wxGeneric) { | |
20 | next if $wxGeneric{$file} =~ /\bR\b/; | |
21 | ||
22 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
23 | ($filedep = $file) =~ s/cp?p?$/\d/; | |
24 | ||
25 | $project{"GTK_SOURCES"} .= "generic/" . $file . " "; | |
26 | $project{"GENERICOBJS"} .= $fileobj . " "; | |
27 | $project{"GENERICDEPS"} .= $filedep . " " | |
28 | } | |
29 | ||
30 | foreach $file (sort keys %wxCommon) { | |
31 | next if $wxCommon{$file} =~ /\bR\b/; | |
32 | ||
33 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
34 | ($filedep = $file) =~ s/cp?p?$/\d/; | |
35 | ||
36 | $project{"GTK_SOURCES"} .= "common/" . $file . " "; | |
37 | $project{"COMMONOBJS"} .= $fileobj . " "; | |
38 | $project{"COMMONDEPS"} .= $filedep . " " | |
39 | } | |
40 | ||
41 | foreach $file (sort keys %wxGTK) { | |
42 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
43 | ($filedep = $file) =~ s/cp?p?$/\d/; | |
44 | ||
45 | $project{"GTK_SOURCES"} .= "gtk/" . $file . " "; | |
46 | $project{"GUIOBJS"} .= $fileobj . " "; | |
47 | $project{"GUIDEPS"} .= $filedep . " " | |
48 | } | |
49 | ||
50 | foreach $file (sort keys %wxUNIX) { | |
51 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
52 | ($filedep = $file) =~ s/cp?p?$/\d/; | |
53 | ||
54 | $project{"GTK_SOURCES"} .= "unix/" . $file . " "; | |
55 | $project{"UNIXOBJS"} .= $fileobj . " "; | |
56 | $project{"UNIXDEPS"} .= $filedep . " " | |
57 | } | |
58 | ||
59 | foreach $file (sort keys %wxHTML) { | |
60 | ($fileobj = $file) =~ s/cp?p?$/\o/; | |
61 | ($filedep = $file) =~ s/cp?p?$/\d/; | |
62 | ||
63 | $project{"GTK_SOURCES"} .= "html/" . $file . " "; | |
64 | $project{"HTMLOBJS"} .= $fileobj . " "; | |
65 | $project{"HTMLDEPS"} .= $filedep . " " | |
66 | } | |
bdad4e7e | 67 | |
2224580a VZ |
68 | #! find all our headers |
69 | foreach $file (sort keys %wxWXINCLUDE) { | |
70 | $project{"GTK_HEADERS"} .= $file . " " | |
71 | } | |
72 | ||
73 | foreach $file (sort keys %wxGTKINCLUDE) { | |
74 | $project{"GTK_HEADERS"} .= "gtk/" . $file . " " | |
75 | } | |
76 | ||
77 | foreach $file (sort keys %wxGENERICINCLUDE) { | |
78 | $project{"GTK_HEADERS"} .= "generic/" . $file . " " | |
79 | } | |
80 | ||
81 | foreach $file (sort keys %wxUNIXINCLUDE) { | |
82 | $project{"GTK_HEADERS"} .= "unix/" . $file . " " | |
83 | } | |
84 | ||
85 | foreach $file (sort keys %wxHTMLINCLUDE) { | |
86 | $project{"GTK_HEADERS"} .= "html/" . $file . " " | |
87 | } | |
88 | ||
89 | foreach $file (sort keys %wxPROTOCOLINCLUDE) { | |
90 | $project{"GTK_HEADERS"} .= "protocol/" . $file . " " | |
91 | } | |
92 | #$} | |
93 | # This file was automatically generated by tmake at #$ Now() | |
94 | # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T! | |
95 | ALL_SOURCES = \ | |
96 | #$ ExpandList("GTK_SOURCES"); | |
97 | ||
98 | ALL_HEADERS = \ | |
99 | #$ ExpandList("GTK_HEADERS"); | |
100 | ||
101 | COMMONOBJS = \ | |
102 | #$ ExpandList("COMMONOBJS"); | |
103 | ||
104 | COMMONDEPS = \ | |
105 | #$ ExpandList("COMMONDEPS"); | |
106 | ||
107 | GENERICOBJS = \ | |
108 | #$ ExpandList("GENERICOBJS"); | |
109 | ||
110 | GENERICDEPS = \ | |
111 | #$ ExpandList("GENERICDEPS"); | |
112 | ||
113 | GUIOBJS = \ | |
114 | #$ ExpandList("GUIOBJS"); | |
115 | ||
116 | GUIDEPS = \ | |
117 | #$ ExpandList("GUIDEPS"); | |
118 | ||
119 | UNIXOBJS = \ | |
120 | #$ ExpandList("UNIXOBJS"); | |
121 | ||
122 | UNIXDEPS = \ | |
123 | #$ ExpandList("UNIXDEPS"); | |
124 | ||
125 | HTMLOBJS = \ | |
126 | #$ ExpandList("HTMLOBJS"); | |
127 | ||
128 | HTMLDEPS = \ | |
129 | #$ ExpandList("HTMLDEPS"); | |
130 |