update for HEAD-2003050101
[reactos.git] / lib / freetype / src / base / Jamfile
1 # FreeType 2 src/base Jamfile (c) 2001, 2002 David Turner
2 #
3
4 SubDir  FT2_TOP $(FT2_SRC_DIR) base ;
5
6
7 {
8   local  _sources ;
9
10   if $(FT2_MULTI)
11   {
12     _sources = ftutil ftdbgmem ftstream ftcalc fttrigon ftgloadr ftoutln
13                ftobjs ftnames ;
14   }
15   else
16   {
17     _sources = ftbase ;
18   }
19
20   Library  $(FT2_LIB) : $(_sources).c ;
21 }
22
23 # Add the optional/replaceable files.
24 #
25 Library  $(FT2_LIB) : ftsystem.c   ftinit.c    ftglyph.c  ftmm.c     ftbdf.c
26                       ftbbox.c     ftdebug.c   ftxf86.c   fttype1.c  ftpfr.c
27                       ftstroker.c  ftwinfnt.c
28                       ;
29
30 # Add Macintosh-specific file to the library when necessary.
31 #
32 if $(MAC)
33 {
34   Library  $(FT2_LIB) : ftmac.c ;
35 }
36
37 # end of src/base Jamfile