aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/extras/freetype2/src/truetype/Jamfile
blob: bb7e05e6e36b84b16d28639fad180fa685843411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# FreeType 2 src/truetype Jamfile (c) 2001, 2004 David Turner
#

SubDir  FT2_TOP $(FT2_SRC_DIR) truetype ;

{
  local  _sources ;

  if $(FT2_MULTI)
  {
    _sources = ttdriver ttobjs ttpload ttgload ttinterp ttgxvar ;
  }
  else
  {
    _sources = truetype ;
  }

  Library  $(FT2_LIB) : $(_sources).c ;
}

# end of src/truetype Jamfile