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} =~ /\bNotMGL\b/;
21 ($fileobj = $file) =~ s/cp?p?$/\o/;
23 $project{"MGL_SOURCES"} .= "generic/" . $file . " ";
24 $project{"GENERICOBJS"} .= $fileobj . " ";
27 foreach $file (sort keys %wxCommon) {
28 next if $wxCommon{$file} =~ /\bNotMGL\b/;
30 ($fileobj = $file) =~ s/cp?p?$/\o/;
32 $project{"MGL_SOURCES"} .= "common/" . $file . " ";
33 $project{"COMMONOBJS"} .= $fileobj . " ";
36 foreach $file (sort keys %wxMGL) {
37 ($fileobj = $file) =~ s/cp?p?$/\o/;
39 $project{"MGL_SOURCES"} .= "mgl/" . $file . " ";
40 #! $project{"GUIOBJS"} .= $fileobj . " ";
42 if ( $wxMGL{$file} =~ /\bL\b/ ) {
43 $project{"GUI_LOWLEVEL_OBJS"} .= $fileobj . " ";
47 foreach $file (sort keys %wxUNIX) {
48 ($fileobj = $file) =~ s/cp?p?$/\o/;
50 $project{"MGL_SOURCES"} .= "unix/" . $file . " ";
51 $project{"UNIXOBJS"} .= $fileobj . " ";
54 foreach $file (sort keys %wxHTML) {
55 ($fileobj = $file) =~ s/cp?p?$/\o/;
57 $project{"MGL_SOURCES"} .= "html/" . $file . " ";
58 $project{"HTMLOBJS"} .= $fileobj . " ";
61 #! find all our headers
62 foreach $file (sort keys %wxWXINCLUDE) {
63 $project{"MGL_HEADERS"} .= $file . " "
66 foreach $file (sort keys %wxGTKINCLUDE) {
67 $project{"MGL_HEADERS"} .= "gtk/" . $file . " "
70 foreach $file (sort keys %wxGENERICINCLUDE) {
71 $project{"MGL_HEADERS"} .= "generic/" . $file . " "
74 foreach $file (sort keys %wxUNIXINCLUDE) {
75 $project{"MGL_HEADERS"} .= "unix/" . $file . " "
78 foreach $file (sort keys %wxHTMLINCLUDE) {
79 $project{"MGL_HEADERS"} .= "html/" . $file . " "
82 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
83 $project{"MGL_HEADERS"} .= "protocol/" . $file . " "
86 # This file was automatically generated by tmake at #$ Now()
87 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE GTK.T!
89 #$ ExpandList("MGL_SOURCES");
92 #$ ExpandList("MGL_HEADERS");
95 #$ ExpandList("COMMONOBJS");
98 #$ ExpandList("GENERICOBJS");
101 #! #$ ExpandList("GUIOBJS");
103 GUI_LOWLEVEL_OBJS = \
104 #$ ExpandList("GUI_LOWLEVEL_OBJS");
107 #$ ExpandList("UNIXOBJS");
110 #$ ExpandList("HTMLOBJS");