1 #!################################################################################
3 #! Purpose: tmake template file from which src/univ/files.lst containing the
4 #! list of files for wxUniversal 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 %wxUNIV) {
17 ($fileobj = $file) =~ s/cp?p?$/\o/;
19 if ( $wxUNIV{$file} =~ /Theme/ ) {
20 $file = "themes/" . $file
23 $project{"UNIV_SOURCES"} .= "univ/" . $file . " ";
24 $project{"UNIVOBJS"} .= $fileobj . " ";
28 foreach $hdr (sort keys %wxUNIVINCLUDE) {
29 $project{"UNIV_HEADERS"} .= "univ/" . $hdr . " ";
32 # This file was automatically generated by tmake
33 # DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNIV.T!
35 #$ ExpandList("UNIV_SOURCES");
38 #$ ExpandList("UNIV_HEADERS");
41 #$ ExpandList("UNIVOBJS");