1 #!################################################################################
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
8 #!################################################################################
10 #! include the code which parses filelist.txt file and initializes
11 #! %wxCommon, %wxGeneric, %wxHtml, %wxUNIX, %wxGTK, %wxMOTIF and
13 IncludeTemplate("filelist.t");
15 #! find all our sources
16 foreach $file (sort keys %wxGeneric) {
17 next if $wxGeneric{$file} =~ /\bNotGTK\b/;
19 ($fileobj = $file) =~ s/cp?p?$/\o/;
21 $project{"GTK_SOURCES"} .= "generic/" . $file . " ";
22 $project{"GUIOBJS"} .= $fileobj . " ";
24 #! also add it to the list of object files used by wxUniv if there
25 #! is no file with the same name among wxUniv own objects
27 if ( $file =~ /^([^.]+)g.cpp$/ ) {
30 if ( !exists $wxUNIV{$filereal} ) {
31 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
35 foreach $file (sort keys %wxCommon) {
36 next if $wxCommon{$file} =~ /\bNotGTK\b/;
38 ($fileobj = $file) =~ s/cp?p?$/\o/;
40 $project{"GTK_SOURCES"} .= "common/" . $file . " ";
41 $project{"COMMONOBJS"} .= $fileobj . " ";
44 foreach $file (sort keys %wxGTK) {
45 ($fileobj = $file) =~ s/cp?p?$/\o/;
47 $project{"GTK_SOURCES"} .= "gtk/" . $file . " ";
48 $project{"GUIOBJS"} .= $fileobj . " ";
50 if ( $wxGTK{$file} =~ /\bL\b/ ) {
51 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
55 foreach $file (sort keys %wxUNIX) {
56 ($fileobj = $file) =~ s/cp?p?$/\o/;
58 $project{"GTK_SOURCES"} .= "unix/" . $file . " ";
59 $project{"UNIXOBJS"} .= $fileobj . " ";
62 foreach $file (sort keys %wxHTML) {
63 ($fileobj = $file) =~ s/cp?p?$/\o/;
65 $project{"GTK_SOURCES"} .= "html/" . $file . " ";
66 $project{"HTMLOBJS"} .= $fileobj . " ";
69 #! find all our headers
70 foreach $file (sort keys %wxWXINCLUDE) {
71 next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/;
73 $project{"GTK_HEADERS"} .= $file . " "
76 foreach $file (sort keys %wxGTKINCLUDE) {
77 $project{"GTK_HEADERS"} .= "gtk/" . $file . " "
80 foreach $file (sort keys %wxGENERICINCLUDE) {
81 next if $wxGENERICINCLUDE{$file} =~ /\bNotGTK\b/;
83 $project{"GTK_HEADERS"} .= "generic/" . $file . " "
86 foreach $file (sort keys %wxUNIXINCLUDE) {
87 $project{"GTK_HEADERS"} .= "unix/" . $file . " "
90 foreach $file (sort keys %wxHTMLINCLUDE) {
91 $project{"GTK_HEADERS"} .= "html/" . $file . " "
94 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
95 $project{"GTK_HEADERS"} .= "protocol/" . $file . " "
98 # This file was automatically generated by tmake
99 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
101 #$ ExpandList("GTK_SOURCES");
104 #$ ExpandList("GTK_HEADERS");
107 #$ ExpandList("COMMONOBJS");
110 #$ ExpandList("GUIOBJS");
112 GUI_LOWLEVEL_OBJS = \
113 #$ ExpandList("GUI_LOWLEVEL_OBJS");
116 #$ ExpandList("UNIXOBJS");
119 #$ ExpandList("HTMLOBJS");