]> git.saurik.com Git - wxWidgets.git/blame - distrib/msw/tmake/baserpm.t
These add .mak (for BCB1) and .bpr (for BCB3 and 4) files for CBuilder in
[wxWidgets.git] / distrib / msw / tmake / baserpm.t
CommitLineData
2224580a
VZ
1#!################################################################################
2#! File: base.t
3#! Purpose: tmake template file from which src/rpmfiles.lst containing the
4#! list of files for wxBase.spec RPM generation script is generated
5#! Author: Vadim Zeitlin
6#! Created: 28.01.00
7#! Version: $Id$
8#!################################################################################
9#${
10 IncludeTemplate("filelist.t");
11
12 foreach $file (sort keys %wxWXINCLUDE) {
13 next unless $wxWXINCLUDE{$file} =~ /\bB\b/;
14
15 $project{"BASE_HEADERS"} .= "include/wx/" . $file . " "
16 }
17
18 foreach $file (sort keys %wxUNIXINCLUDE) {
19 next unless $wxWXINCLUDE{$file} =~ /\bB\b/;
20
21 $project{"BASE_HEADERS"} .= "include/wx/unix/" . $file . " "
22 }
23
24 foreach $file (sort keys %wxPROTOCOLINCLUDE) {
25 next unless $wxPROTOCOLINCLUDE{$file} =~ /\bB\b/;
26
27 $project{"BASE_HEADERS"} .= "include/wx/protocol/" . $file . " "
28 }
29#$}
30#$ ExpandGlue("BASE_HEADERS", "/usr/", "\n/usr/", "");