blob: 6b8a401822348a0ba2edd6f1b0cba3e5e25b40e2 [file] [log] [blame]
Werner Lemberg60a04df2005-06-04 23:04:30 +00001# FreeType 2 src/sfnt Jamfile
Werner Lemberga1844e02001-04-03 21:07:36 +00002#
Werner Lemberg60a04df2005-06-04 23:04:30 +00003# Copyright 2001, 2002, 2004, 2005 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.
David Turner5bf0a392001-03-24 17:10:09 +000011
David Turner60b32e12002-11-06 22:32:54 +000012SubDir FT2_TOP $(FT2_SRC_DIR) sfnt ;
David Turner5bf0a392001-03-24 17:10:09 +000013
14{
15 local _sources ;
16
17 if $(FT2_MULTI)
18 {
David Turner89a2a4b2005-12-14 20:38:15 +000019 _sources = sfobjs sfdriver ttcmap ttpost ttload ttsbit ttkern ttbdf ;
David Turner5bf0a392001-03-24 17:10:09 +000020 }
21 else
22 {
Werner Lembergcbc99382001-04-06 07:05:50 +000023 _sources = sfnt ;
David Turner5bf0a392001-03-24 17:10:09 +000024 }
25
Werner Lembergcbc99382001-04-06 07:05:50 +000026 Library $(FT2_LIB) : $(_sources).c ;
David Turner5bf0a392001-03-24 17:10:09 +000027}
28
Werner Lemberga1844e02001-04-03 21:07:36 +000029# end of src/sfnt Jamfile