2001-04-03 23:07:36 +02:00
|
|
|
# FreeType 2 src/cache Jamfile (c) 2001 David Turner
|
|
|
|
#
|
|
|
|
|
|
|
|
SubDir FT2_TOP src cache ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
SubDirHdrs [ FT2_SubDir src cache ] ;
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# The file <freetype/ftcache.h> contains some macro definitions that are
|
|
|
|
# later used in #include statements related to the cache sub-system. It
|
|
|
|
# needs to be parsed through a HDRMACRO rule for macro definitions.
|
2001-03-24 18:10:09 +01:00
|
|
|
#
|
|
|
|
HDRMACRO [ FT2_SubDir include ftcache.h ] ;
|
|
|
|
|
|
|
|
{
|
2001-04-03 23:07:36 +02:00
|
|
|
local _sources ;
|
|
|
|
|
|
|
|
if $(FT2_MULTI)
|
|
|
|
{
|
2001-12-07 15:43:45 +01:00
|
|
|
_sources = ftlru ftcmanag ftccache ftcglyph ftcsbits ftcimage ftccmap ;
|
2001-04-03 23:07:36 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2001-04-06 09:05:50 +02:00
|
|
|
_sources = ftcache ;
|
2001-04-03 23:07:36 +02:00
|
|
|
}
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-06 09:05:50 +02:00
|
|
|
Library $(FT2_LIB) : $(_sources).c ;
|
2001-04-03 23:07:36 +02:00
|
|
|
}
|
2001-03-24 18:10:09 +01:00
|
|
|
|
2001-04-03 23:07:36 +02:00
|
|
|
# end of src/cache Jamfile
|