2005-06-05 03:04:30 +04:00
|
|
|
# FreeType 2 top Jamfile.
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
2005-06-05 03:04:30 +04:00
|
|
|
# Copyright 2001, 2002, 2003, 2004 by
|
|
|
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
#
|
|
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
|
|
|
# and distributed under the terms of the FreeType project license,
|
|
|
|
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
|
|
|
|
# indicate that you have read the license and understand and accept it
|
|
|
|
# fully.
|
|
|
|
|
2001-03-24 20:10:09 +03:00
|
|
|
|
2002-11-07 01:32:54 +03:00
|
|
|
# The HDRMACRO is already defined in FTJam and is used to add
|
|
|
|
# the content of certain macros to the list of included header
|
|
|
|
# files.
|
|
|
|
#
|
2003-04-21 17:30:27 +04:00
|
|
|
# We can compile FreeType 2 with classic Jam however thanks to
|
2002-11-07 01:32:54 +03:00
|
|
|
# the following code
|
|
|
|
#
|
|
|
|
if ! $(JAM_TOOLSET)
|
|
|
|
{
|
|
|
|
rule HDRMACRO
|
|
|
|
{
|
2003-04-21 17:30:27 +04:00
|
|
|
# nothing
|
2002-11-07 01:32:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
|
2001-04-04 01:07:36 +04:00
|
|
|
# We need to invoke a SubDir rule if the FT2 source directory top is not the
|
|
|
|
# current directory. This allows us to build FreeType 2 as part of a larger
|
|
|
|
# project easily.
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
|
|
|
if $(FT2_TOP) != $(DOT)
|
|
|
|
{
|
2001-04-04 01:07:36 +04:00
|
|
|
SubDir FT2_TOP ;
|
2001-03-24 20:10:09 +03:00
|
|
|
}
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
|
|
|
|
# The following macros define the include directory, the source directory,
|
|
|
|
# and the final library name (without library extensions). They can be
|
2002-11-07 01:32:54 +03:00
|
|
|
# replaced by other definitions when the library is compiled as part of
|
|
|
|
# a larger project.
|
|
|
|
#
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Name of FreeType include directory during compilation.
|
|
|
|
# This is relative to FT2_TOP.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
FT2_INCLUDE_DIR ?= include ;
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Name of FreeType source directory during compilation.
|
|
|
|
# This is relative to FT2_TOP.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
FT2_SRC_DIR ?= src ;
|
2001-03-24 20:10:09 +03:00
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Name of final library, without extension.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
FT2_LIB ?= $(LIBPREFIX)freetype ;
|
2001-03-24 20:10:09 +03:00
|
|
|
|
2002-11-07 01:32:54 +03:00
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Define FT2_BUILD_INCLUDE to point to your build-specific directory.
|
|
|
|
# This is prepended to FT2_INCLUDE_DIR. It can be used to specify
|
2002-11-07 01:32:54 +03:00
|
|
|
# the location of a custom <ft2build.h> which will point to custom
|
2003-04-21 17:30:27 +04:00
|
|
|
# versions of "ftmodule.h" and "ftoption.h", for example.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
FT2_BUILD_INCLUDE ?= ;
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# The list of modules to compile on any given build of the library.
|
|
|
|
# By default, this will contain _all_ modules defined in FT2_SRC_DIR.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
# IMPORTANT: You'll need to change the content of "ftmodule.h" as well
|
|
|
|
# if you modify this list or provide your own.
|
|
|
|
#
|
2003-12-24 21:42:04 +03:00
|
|
|
FT2_COMPONENTS ?= autofit # auto-fitter
|
2002-11-07 01:32:54 +03:00
|
|
|
base # base component (public APIs)
|
|
|
|
bdf # BDF font driver
|
|
|
|
cache # cache sub-system
|
|
|
|
cff # CFF/CEF font driver
|
2003-04-21 17:30:27 +04:00
|
|
|
cid # PostScript CID-keyed font driver
|
2004-03-05 12:26:24 +03:00
|
|
|
gzip # support for gzip-compressed files
|
|
|
|
lzw # support for LZW-compressed files
|
* Jamfile: removing otvalid from the list of compiled modules
* include/freetype/internal/ftserv.h: added compiler pragmas to get rid
of annoying warnings with Visual C++ compiler in maximum warning mode
* src/autofit/afhints.c, src/autofit/aflatin.c, src/base/ftstroke.c,
src/bdf/bdfdrivr.c, src/cache/ftcbasic.c, src/cache/ftccmap.c,
src/cache/ftcmanag.c, src/cff/cffload.c, src/cid/cidload.c,
src/lzw/zopen.c, src/otvalid/otvgdef.c, src/pcf/pcfread.c,
src/sfnt/sfobjs.c, src/truetype/ttgxvar.c: removing compiler warnings
2005-05-01 14:11:32 +04:00
|
|
|
#otvalid # validation of OpenType tables
|
2002-11-07 01:32:54 +03:00
|
|
|
pcf # PCF font driver
|
|
|
|
pfr # PFR/TrueDoc font driver
|
2003-04-21 17:30:27 +04:00
|
|
|
psaux # common PostScript routines module
|
|
|
|
pshinter # PostScript hinter module
|
|
|
|
psnames # PostScript names handling
|
|
|
|
raster # monochrome rasterizer
|
|
|
|
smooth # anti-aliased rasterizer
|
2002-11-07 01:32:54 +03:00
|
|
|
sfnt # SFNT-based format support routines
|
|
|
|
truetype # TrueType font driver
|
2003-04-21 17:30:27 +04:00
|
|
|
type1 # PostScript Type 1 font driver
|
|
|
|
type42 # PostScript Type 42 (embedded TrueType) driver
|
2002-11-07 01:32:54 +03:00
|
|
|
winfonts # Windows FON/FNT font driver
|
|
|
|
;
|
|
|
|
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Don't touch.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
|
|
|
FT2_INCLUDE = $(FT2_BUILD_INCLUDE)
|
|
|
|
[ FT2_SubDir $(FT2_INCLUDE_DIR) ] ;
|
|
|
|
|
|
|
|
FT2_SRC = [ FT2_SubDir $(FT2_SRC_DIR) ] ;
|
|
|
|
|
2003-08-18 02:31:23 +04:00
|
|
|
# Location of API Reference Documentation
|
|
|
|
#
|
|
|
|
if $(DOC_DIR)
|
|
|
|
{
|
|
|
|
DOC_DIR = $(DOCDIR:T) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DOC_DIR = docs/reference ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Only used by FreeType developers.
|
2002-11-07 01:32:54 +03:00
|
|
|
#
|
2001-10-18 15:59:08 +04:00
|
|
|
if $(DEBUG_HINTER)
|
|
|
|
{
|
|
|
|
CCFLAGS += -DDEBUG_HINTER ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-04-04 01:07:36 +04:00
|
|
|
# We need "freetype2/include" in the current include path in order to
|
|
|
|
# compile any part of FreeType 2.
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
2003-01-08 12:10:53 +03:00
|
|
|
HDRS += $(FT2_INCLUDE) ;
|
|
|
|
|
|
|
|
|
2001-04-04 01:07:36 +04:00
|
|
|
# Uncomment the following line if you want to build individual source files
|
2003-04-21 17:30:27 +04:00
|
|
|
# for each FreeType 2 module. This is only useful during development, and
|
|
|
|
# is better defined as an environment variable anyway!
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
* README: Formatting.
* Jamfile: Fix typo.
* src/cff/cffparse.c: Move error code #defines to...
* include/freetype/internal/cfferrs.h: This file.
* src/cff/cffdrivr.c, src/cff/cffobjs.c, src/cff/cffload.c: Replaced
`FT_Err_*' with `CFF_Err_*'.
* src/cid/cidparse.c: Replaced `FT_Err_*' with `T1_Err_*'.
* src/psaux/psobjs.c, src/psaux/t1decode.c: Ditto.
* src/sfnt/sfobcs.c, src/sfnt/ttload.c: Replaced `FT_Err_*' with
`TT_Err_*'.
* src/truetype/ttgload.c, src/truetype/ttobjs.c: Ditto.
* src/type1/t1gload.c, src/type1/t1load.c, src/type1/t1objs.c,
src/type1/t1parse.c: Replaced `FT_Err_*' with `T1_Err_*'.
* include/freetype/internal/cfferrs.h: Add
`CFF_Err_Unknown_File_Format'.
* include/freetype/internal/t1errors.h: Add
`T1_Err_Unknown_File_Format'.
* include/freetype/internal/tterrors.h: Add
`TT_Err_Unknown_File_Format'.
* src/cff/cffload.h: Add `cff_*_encoding' and `cff_*_charset'
references.
* src/psaux/psobjs.c: Include `FT_INTERNAL_TYPE1_ERRORS_H'.
* src/cff/cffobjs.c (CFF_Init_Face, CFF_Done_Face): Use
FT_LOCAL_DEF.
* src/cid/cidobjs.c (CID_Done_Driver): Ditto.
* src/trutype/ttobjs.c (TT_Init_Face, TT_Done_Face, TT_Init_Size):
Ditto.
* src/type1/t1objs.c (T1_Done_Driver): Ditto.
* src/pcf/pcfdriver.c (PCF_Done_Face): Ditto.
* src/pcf/pcf.h: Use FT_LOCAL for `PCF_Done_Face'.
2001-04-03 03:54:01 +04:00
|
|
|
# FT2_MULTI = true ;
|
2001-03-24 20:10:09 +03:00
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
|
2001-05-14 18:01:00 +04:00
|
|
|
# The file <freetype/config/ftheader.h> is used to define macros that are
|
2001-04-04 01:07:36 +04:00
|
|
|
# later used in #include statements. It needs to be parsed in order to
|
|
|
|
# record these definitions.
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
2001-05-11 18:25:02 +04:00
|
|
|
HDRMACRO [ FT2_SubDir include freetype config ftheader.h ] ;
|
2001-10-18 15:59:08 +04:00
|
|
|
HDRMACRO [ FT2_SubDir include freetype internal internal.h ] ;
|
2001-03-24 20:10:09 +03:00
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
|
2001-04-04 01:07:36 +04:00
|
|
|
# Now include the Jamfile in "freetype2/src", used to drive the compilation
|
|
|
|
# of each FreeType 2 component and/or module.
|
2001-03-24 20:10:09 +03:00
|
|
|
#
|
2002-11-07 01:32:54 +03:00
|
|
|
SubInclude FT2_TOP $(FT2_SRC_DIR) ;
|
2001-03-24 20:10:09 +03:00
|
|
|
|
|
|
|
|
2003-04-21 17:30:27 +04:00
|
|
|
# Test files (hinter debugging). Only used by FreeType developers.
|
2001-10-18 15:59:08 +04:00
|
|
|
#
|
|
|
|
if $(DEBUG_HINTER)
|
|
|
|
{
|
|
|
|
SubInclude FT2_TOP tests ;
|
|
|
|
}
|
|
|
|
|
2003-08-18 02:31:23 +04:00
|
|
|
actions RefDoc
|
|
|
|
{
|
2004-08-11 09:25:37 +04:00
|
|
|
python $(FT2_SRC)/tools/docmaker/docmaker.py --prefix=ft2 --title=FreeType-2.1.10 --output=$(DOC_DIR) $(FT2_INCLUDE)/freetype/*.h $(FT2_INCLUDE)/freetype/config/*.h $(FT2_INCLUDE)/freetype/cache/*.h
|
2003-08-18 02:31:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
RefDoc refdoc ;
|
|
|
|
|
|
|
|
|
2001-04-04 01:07:36 +04:00
|
|
|
# end of top Jamfile
|