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 $project{"COMMONOBJS"} .= "parser.o ";
18 foreach $file (sort keys %wxGeneric) {
19 next if $wxGeneric{$file} =~ /\bR\b/;
21 ($fileobj = $file) =~ s/cp?p?$/\o/;
23 $project{"GTK_SOURCES"} .= "generic/" . $file . " ";
24 $project{"GUIOBJS"} .= $fileobj . " ";
26 #! also add it to the list of object files used by wxUniv if there
27 #! is no file with the same name among wxUniv own objects
29 if ( $file =~ /^([^.]+)g.cpp$/ ) {
32 if ( !exists $wxUNIV{$filereal} ) {
33 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
37 foreach $file (sort keys %wxCommon) {
38 next if $wxCommon{$file} =~ /\bR\b/;
40 ($fileobj = $file) =~ s/cp?p?$/\o/;
42 $project{"GTK_SOURCES"} .= "common/" . $file . " ";
43 $project{"COMMONOBJS"} .= $fileobj . " ";
46 foreach $file (sort keys %wxGTK) {
47 ($fileobj = $file) =~ s/cp?p?$/\o/;
49 $project{"GTK_SOURCES"} .= "gtk/" . $file . " ";
50 $project{"GUIOBJS"} .= $fileobj . " ";
52 if ( $wxGTK{$file} =~ /\bL\b/ ) {
53 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
57 foreach $file (sort keys %wxUNIX) {
58 ($fileobj = $file) =~ s/cp?p?$/\o/;
60 $project{"GTK_SOURCES"} .= "unix/" . $file . " ";
61 $project{"UNIXOBJS"} .= $fileobj . " ";
64 foreach $file (sort keys %wxHTML) {
65 ($fileobj = $file) =~ s/cp?p?$/\o/;
67 $project{"GTK_SOURCES"} .= "html/" . $file . " ";
68 $project{"HTMLOBJS"} .= $fileobj . " ";
71 #! find all our headers
72 foreach $file (sort keys %wxWXINCLUDE) {
73 next if $wxWXINCLUDE{$file} =~ /\bR\b/;
75 $project{"GTK_HEADERS"} .= $file . " "
78 foreach $file (sort keys %wxGTKINCLUDE) {
79 $project{"GTK_HEADERS"} .= "gtk/" . $file . " "
82 foreach $file (sort keys %wxGENERICINCLUDE) {
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 at #$ Now()
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");