adding missing Jamfile

This commit is contained in:
David Turner 2004-04-05 22:35:00 +00:00
parent 1e2fec02b6
commit 94172aa971
1 changed files with 33 additions and 0 deletions

33
src/otlayout/Jamfile Normal file
View File

@ -0,0 +1,33 @@
##
## FreeType 2 src/otlayout Jamfile (c) 2004 David Turner
##
SubDir FT2_TOP $(FT2_SRC_DIR) otlayout ;
{
local _sources ;
if $(FT2_MULTI)
{
_sources = otobjs
otlayout
otdriver
ftxgdef
ftxgpos
ftxopen
ftxgsub
ot-info
ot-ruleset
ot-array
ot-unicode
;
}
else
{
_sources = ot ;
}
Library $(FT2_LIB) : $(_sources).c ;
}
# end of src/gx Jamfile