2002-03-31 20:48:24 +02:00
|
|
|
# FreeType 2 src/sfnt Jamfile (c) 2001, 2002 David Turner
|
2001-04-03 23:07:36 +02:00
|
|
|
#
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
SubDir FT2_TOP src sfnt ;
|
|
|
|
|
|
|
|
SubDirHdrs [ FT2_SubDir src sfnt ] ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
2002-03-22 16:02:38 +01:00
|
|
|
_sources = sfobjs sfdriver ttcmap ttcmap0 ttpost ttload ttsbit ;
|
2001-03-24 18:10:09 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-06 09:05:50 +02:00
|
|
|
_sources = sfnt ;
|
2001-03-24 18:10:09 +01:00
|
|
|
}
|
|
|
|
|
2001-04-06 09:05:50 +02:00
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
2001-03-24 18:10:09 +01:00
|
|
|
}
|
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# end of src/sfnt Jamfile
|