• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# FreeType 2 src/gxvalid Jamfile
2#
3# Copyright 2005-2018 by
4# suzuki toshiya, Masatake YAMATO and Red Hat K.K.
5#
6# This file is part of the FreeType project, and may only be used, modified,
7# and distributed under the terms of the FreeType project license,
8# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
9# indicate that you have read the license and understand and accept it
10# fully.
11
12SubDir  FT2_TOP $(FT2_SRC_DIR) gxvalid ;
13
14
15{
16  local  _sources ;
17
18  if $(FT2_MULTI)
19  {
20    _sources = gxvbsln
21               gxvcommn
22               gxvfeat
23               gxvjust
24               gxvkern
25               gxvlcar
26               gxvmod
27               gxvmort
28               gxvmort0
29               gxvmort1
30               gxvmort2
31               gxvmort4
32               gxvmort5
33               gxvmorx
34               gxvmorx0
35               gxvmorx1
36               gxvmorx2
37               gxvmorx4
38               gxvmorx5
39               gxvopbd
40               gxvprop
41               gxvtrak
42               ;
43  }
44  else
45  {
46    _sources = gxvalid ;
47  }
48
49  Library  $(FT2_LIB) : $(_sources).c ;
50}
51
52# end of src/gxvalid Jamfile
53