summaryrefslogtreecommitdiff
path: root/Jamfile
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2005-10-28 16:14:14 +0000
committerDavid Turner <david@freetype.org>2005-10-28 16:14:14 +0000
commit9fbd2ab8849d2517f2e7f4ce1af3c5a77893cbe5 (patch)
treecd906bcba3e49c3a3b7207e289ab4949c84d1c09 /Jamfile
parent69d45172b6b03f4e4f6fd82cbe8f32ac7a2e7e91 (diff)
downloadfreetype2-9fbd2ab8849d2517f2e7f4ce1af3c5a77893cbe5.tar.gz
- various performance enhancements
- fixing apinames.c, adding support for Watcom and Borland compilers - adding generation of exported symbols list to the build system, including the Unix one !! sorry Werner, I have no time to document this in ChangeLog at the moment
Diffstat (limited to 'Jamfile')
-rw-r--r--Jamfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Jamfile b/Jamfile
index 5dcf528f6..2a3a2fb4c 100644
--- a/Jamfile
+++ b/Jamfile
@@ -155,12 +155,14 @@ SubInclude FT2_TOP $(FT2_SRC_DIR) tools ;
rule GenExportSymbols
{
- local headers = [ Glob $(2) : *.h ] ;
+ local apinames = apinames$(SUFEXE) ;
+ local headers = [ Glob $(2) : *.h ] ;
APINAMES on $(1) = apinames$(SUFEXE) ;
- Depends $(1) : $(headers) ;
+ Depends $(1) : $(apinames) $(headers) ;
GenExportSymbols1 $(1) : $(headers) ;
+ Clean clean : $(1) ;
}
actions GenExportSymbols1 bind APINAMES