2004-02-03 22:34:29 +01:00
|
|
|
# FreeType 2 src/sfnt Jamfile (c) 2001, 2002, 2004 David Turner
|
2001-04-03 23:07:36 +02:00
|
|
|
#
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2002-11-06 23:32:54 +01:00
|
|
|
SubDir FT2_TOP $(FT2_SRC_DIR) sfnt ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
2004-08-29 18:50:09 +02:00
|
|
|
_sources = sfobjs sfdriver ttcmap 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
|