blob: 752fcac2a11d489a10aeb2f7d73a557d17d05e2f [file] [log] [blame]
Werner Lemberg60a04df2005-06-04 23:04:30 +00001# FreeType 2 src/pcf Jamfile
Werner Lemberga1844e02001-04-03 21:07:36 +00002#
Werner Lemberg60a04df2005-06-04 23:04:30 +00003# Copyright 2001, 2003 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) pcf ;
David Turner5bf0a392001-03-24 17:10:09 +000013
14{
15 local _sources ;
16
17 if $(FT2_MULTI)
18 {
Werner Lemberg499053c2003-06-07 04:02:21 +000019 _sources = pcfdrivr pcfread pcfutil ;
David Turner5bf0a392001-03-24 17:10:09 +000020 }
21 else
22 {
Werner Lembergcbc99382001-04-06 07:05:50 +000023 _sources = pcf ;
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/pcf Jamfile