~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/src/base/Jamfile

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# FreeType 2 src/base Jamfile (c) 2001, 2002, 2003, 2004 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 ftrfork ;
 
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
                      ftstroke.c   ftwinfnt.c ;
 
28
 
 
29
# Add Macintosh-specific file to the library when necessary.
 
30
#
 
31
if $(MAC)
 
32
{
 
33
  Library  $(FT2_LIB) : ftmac.c ;
 
34
}
 
35
 
 
36
# end of src/base Jamfile