]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/tmake/gtk.t
Various changes due to OGL and glcanvas having changed
[wxWidgets.git] / distrib / msw / tmake / gtk.t
CommitLineData
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
RR
67
68 foreach $file (sort keys %wxOGL) {
69 ($fileobj = $file) =~ s/cp?p?$/\o/;
70 ($filedep = $file) =~ s/cp?p?$/\d/;
71
72 $project{"GTK_SOURCES"} .= "ogl/" . $file . " ";
73 $project{"OGLOBJS"} .= $fileobj . " ";
74 $project{"OGLDEPS"} .= $filedep . " "
75 }
76
2224580a
VZ
77 #! find all our headers
78 foreach $file (sort keys %wxWXINCLUDE) {
79 $project{"GTK_HEADERS"} .= $file . " "
80 }
81
82 foreach $file (sort keys %wxGTKINCLUDE) {
83 $project{"GTK_HEADERS"} .= "gtk/" . $file . " "
84 }
85
86 foreach $file (sort keys %wxGENERICINCLUDE) {
87 $project{"GTK_HEADERS"} .= "generic/" . $file . " "
88 }
89
90 foreach $file (sort keys %wxUNIXINCLUDE) {
91 $project{"GTK_HEADERS"} .= "unix/" . $file . " "
92 }
93
94 foreach $file (sort keys %wxHTMLINCLUDE) {
95 $project{"GTK_HEADERS"} .= "html/" . $file . " "
96 }
97
bdad4e7e
RR
98 foreach $file (sort keys %wxOGLINCLUDE) {
99 $project{"GTK_HEADERS"} .= "ogl/" . $file . " "
100 }
101
2224580a
VZ
102 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
103 $project{"GTK_HEADERS"} .= "protocol/" . $file . " "
104 }
105#$}
106# This file was automatically generated by tmake at #$ Now()
107# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
108ALL_SOURCES = \
109 #$ ExpandList("GTK_SOURCES");
110
111ALL_HEADERS = \
112 #$ ExpandList("GTK_HEADERS");
113
114COMMONOBJS = \
115 #$ ExpandList("COMMONOBJS");
116
117COMMONDEPS = \
118 #$ ExpandList("COMMONDEPS");
119
120GENERICOBJS = \
121 #$ ExpandList("GENERICOBJS");
122
123GENERICDEPS = \
124 #$ ExpandList("GENERICDEPS");
125
126GUIOBJS = \
127 #$ ExpandList("GUIOBJS");
128
129GUIDEPS = \
130 #$ ExpandList("GUIDEPS");
131
132UNIXOBJS = \
133 #$ ExpandList("UNIXOBJS");
134
135UNIXDEPS = \
136 #$ ExpandList("UNIXDEPS");
137
138HTMLOBJS = \
139 #$ ExpandList("HTMLOBJS");
140
141HTMLDEPS = \
142 #$ ExpandList("HTMLDEPS");
143
bdad4e7e
RR
144OGLOBJS = \
145 #$ ExpandList("OGLOBJS");
146
147OGLDEPS = \
148 #$ ExpandList("OGLDEPS");
149