1 # FreeType 2 src/autofit Jamfile 2 # 3 # Copyright 2003-2018 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 src autofit ; 13 14 { 15 local _sources ; 16 17 # define FT2_AUTOFIT2 to enable experimental latin hinter replacement 18 if $(FT2_AUTOFIT2) 19 { 20 CCFLAGS += FT_OPTION_AUTOFIT2 ; 21 } 22 if $(FT2_MULTI) 23 { 24 _sources = afangles 25 afblue 26 afcjk 27 afdummy 28 afglobal 29 afhints 30 afindic 31 aflatin 32 afloader 33 afmodule 34 afpic 35 afranges 36 afshaper 37 afwarp 38 ; 39 40 if $(FT2_AUTOFIT2) 41 { 42 _sources += aflatin2 ; 43 } 44 } 45 else 46 { 47 _sources = autofit ; 48 } 49 50 Library $(FT2_LIB) : $(_sources).c ; 51 } 52 53 # end of src/autofit Jamfile 54