~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/freetype/src/cache/Jamfile

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# FreeType 2 src/cache Jamfile
 
2
#
 
3
# Copyright 2001, 2003, 2004 by
 
4
# David Turner, Robert Wilhelm, and Werner Lemberg.
 
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
 
 
12
SubDir  FT2_TOP $(FT2_SRC_DIR) cache ;
 
13
 
 
14
# The file <freetype/ftcache.h> contains some macro definitions that are
 
15
# later used in #include statements related to the cache sub-system.  It
 
16
# needs to be parsed through a HDRMACRO rule for macro definitions.
 
17
#
 
18
HDRMACRO  [ FT2_SubDir  include ftcache.h ] ;
 
19
 
 
20
{
 
21
  local  _sources ;
 
22
 
 
23
  if $(FT2_MULTI)
 
24
  {
 
25
    _sources = ftcmru
 
26
               ftcmanag
 
27
               ftccache
 
28
               ftcglyph
 
29
               ftcsbits
 
30
               ftcimage
 
31
               ftcbasic
 
32
               ftccmap
 
33
               ;
 
34
  }
 
35
  else
 
36
  {
 
37
    _sources = ftcache ;
 
38
  }
 
39
 
 
40
  Library  $(FT2_LIB) : $(_sources).c ;
 
41
}
 
42
 
 
43
# end of src/cache Jamfile