]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/tmake/univ.t
Checked in WXWIN=$(WXDIR) hack as per Vadim's request
[wxWidgets.git] / distrib / msw / tmake / univ.t
CommitLineData
1e6feb95
VZ
1#!################################################################################
2#! File: univ.t
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
6#! Created: 26.06.01
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 foreach $file (sort keys %wxUNIV) {
17 ($fileobj = $file) =~ s/cp?p?$/\o/;
1e6feb95 18
9b695262
VZ
19 if ( $wxUNIV{$file} =~ /Theme/ ) {
20 $file = "themes/" . $file
21 }
22
1e6feb95
VZ
23 $project{"UNIV_SOURCES"} .= "univ/" . $file . " ";
24 $project{"UNIVOBJS"} .= $fileobj . " ";
1e6feb95
VZ
25 }
26
9b695262
VZ
27 #! and headers
28 foreach $hdr (sort keys %wxUNIVINCLUDE) {
29 $project{"UNIV_HEADERS"} .= "univ/" . $hdr . " ";
30 }
1e6feb95 31#$}
0f04dbf3 32# This file was automatically generated by tmake
3a922bb4 33# DO NOT CHANGE THIS FILE, YOUR CHANGES WILL BE LOST! CHANGE UNIV.T!
9b695262
VZ
34UNIV_SOURCES = \
35 #$ ExpandList("UNIV_SOURCES");
36
37UNIV_HEADERS = \
38 #$ ExpandList("UNIV_HEADERS");
39
1e6feb95
VZ
40UNIVOBJS = \
41 #$ ExpandList("UNIVOBJS");
42