* src/type42/Jamfile: New file.

This commit is contained in:
Werner Lemberg 2002-05-17 12:10:04 +00:00
parent daeb2bc82d
commit 35164d7036
2 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-05-17 Werner Lemberg <wl@gnu.org>
* src/type42/Jamfile: New file.
2002-05-14 Werner Lemberg <wl@gnu.org>
Adding a driver for Type42 fonts written by Roberto Alameda

23
src/type42/Jamfile Normal file
View File

@ -0,0 +1,23 @@
# FreeType 2 src/type42 Jamfile (c) 2002 David Turner
#
SubDir FT2_TOP src type42 ;
SubDirHdrs [ FT2_SubDir src type42 ] ;
{
local _sources ;
if $(FT2_MULTI)
{
_sources = t42drivr ;
}
else
{
_sources = t42drivr ;
}
Library $(FT2_LIB) : $(_sources).c ;
}
# end of src/type42 Jamfile