summaryrefslogtreecommitdiff
path: root/src/pshinter/Jamfile
blob: 3b749f1716ed01d49995b32bc5be0f9f01b16bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# FreeType 2 src/pshinter Jamfile (c) 2001 David Turner
#

SubDir  FT2_TOP src pshinter ;

SubDirHdrs  [ FT2_SubDir  src pshinter ] ;

{
  local  _sources ;

  if $(FT2_MULTI)
  {
    _sources = pshrec pshglob pshalgo1 pshalgo2 pshmod ;
  }
  else
  {
    _sources = pshinter ;
  }

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

# end of src/psaux Jamfile