2002-05-17 14:10:04 +02:00
|
|
|
# FreeType 2 src/type42 Jamfile (c) 2002 David Turner
|
|
|
|
#
|
|
|
|
|
|
|
|
SubDir FT2_TOP src type42 ;
|
|
|
|
|
|
|
|
SubDirHdrs [ FT2_SubDir src type42 ] ;
|
|
|
|
|
|
|
|
{
|
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
2002-06-07 09:23:06 +02:00
|
|
|
_sources = t42objs t42parse t42drivr ;
|
2002-05-17 14:10:04 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-06-07 09:23:06 +02:00
|
|
|
_sources = type42 ;
|
2002-05-17 14:10:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
|
|
|
}
|
|
|
|
|
|
|
|
# end of src/type42 Jamfile
|