blob: 9e2f2b8d05097df49afd8238c5a980ba31387fb0 [file] [log] [blame]
Werner Lemberg60a04df2005-06-04 23:04:30 +00001# FreeType 2 src/pfr Jamfile
David Turner609e28c2002-04-19 15:13:47 +00002#
Werner Lemberg60a04df2005-06-04 23:04:30 +00003# Copyright 2002 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 Turner609e28c2002-04-19 15:13:47 +000011
David Turner60b32e12002-11-06 22:32:54 +000012SubDir FT2_TOP $(FT2_SRC_DIR) pfr ;
David Turner609e28c2002-04-19 15:13:47 +000013
14{
15 local _sources ;
16
17 if $(FT2_MULTI)
18 {
Werner Lemberg0240d292003-06-09 15:54:18 +000019 _sources = pfrdrivr pfrgload pfrload pfrobjs pfrcmap pfrsbit ;
David Turner609e28c2002-04-19 15:13:47 +000020 }
21 else
22 {
23 _sources = pfr ;
24 }
25
26 Library $(FT2_LIB) : $(_sources).c ;
27}
28
29# end of src/pfr Jamfile