2000-03-05 02:14:19 +01:00
|
|
|
#
|
|
|
|
# FreeType 2 build system -- top-level Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# Copyright 1996-2000 by
|
|
|
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
#
|
A complete revision of FreeType 2's GNU makefiles (of the library):
Tons of unnecessary stuff have been removed; only the essential rules
have been retained.
The source files now depend on all header files in include/freetype,
include/freetype/config, and include/freetype/internal. This is not
optimal, I know, and I'll try to improve this, but it is better than
before (namely no dependencies on `internal').
FTDEBUG_SRC has been added (similar to FTSYS_SRC) -- I don't know
exactly whether this is really useful, but it doesn't harm.
There is now more documentation in the makefiles itself.
io-frames.html: Use of <th>, <code>, and <var> for better tagging.
Reactivating of FT_DEBUG_LEVEL_xxx macros.
Added a lot of #include directives to make `multi' builds possible -- note
that currently the modules cid, t1, and t1z have clashing structures and
functions which means that you can only use one of these three modules for a
multi build.
Added some missing function declarations to (local) header files.
Renamed some T1_Open_Face() to CID_Open_Face() in the cid module -- a lot
of other functions should be renamed also...
Replaced many FT_xxx stuff with T1_xxx in t1z driver -- this isn't finished
yet...
Fixed FT_Free() to allow a NULL pointer without an assertion (this has
always been a valid assumption in FreeType, at least in FT 1.x).
A lot of other, minor fixes (mostly documentation).
2000-06-11 05:46:57 +02:00
|
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
2000-03-05 02:14:19 +01:00
|
|
|
# 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.
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# This file is designed for GNU Make, do not use it with another Make tool!
|
|
|
|
#
|
|
|
|
# It works as follows:
|
|
|
|
#
|
|
|
|
# - When invoked for the first time, this Makefile will include the rules
|
|
|
|
# found in `freetype/config/detect.mk'. They are in charge of detecting
|
|
|
|
# the current platform.
|
1999-12-17 00:11:37 +01:00
|
|
|
#
|
2000-03-05 02:14:19 +01:00
|
|
|
# A summary of the detection will be displayed, and the file `config.mk'
|
|
|
|
# will be created in the current directory.
|
|
|
|
#
|
|
|
|
# - When invoked later, this Makefile will include the rules found in
|
|
|
|
# `config.mk'. This sub-Makefile will define some system-specific
|
|
|
|
# variables (like compiler, compilation flags, object suffix, etc.), then
|
|
|
|
# include the rules found in `freetype/config/freetype.mk', used to build
|
|
|
|
# the library.
|
|
|
|
#
|
|
|
|
# See the comments in `config/detect.mk' and `config/freetype.mk' for more
|
|
|
|
# details on host platform detection and library builds.
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: setup
|
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
# The variable TOP holds the path to the topmost directory in the FreeType
|
2000-03-05 02:14:19 +01:00
|
|
|
# engine source hierarchy. If it is not defined, default it to `.'.
|
1999-12-17 00:11:37 +01:00
|
|
|
#
|
|
|
|
ifndef TOP
|
2000-03-05 02:14:19 +01:00
|
|
|
TOP := .
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
CONFIG_MK := config.mk
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# If no configuration sub-makefile is present, or if `setup' is the target
|
|
|
|
# to be built, run the auto-detection rules to figure out which
|
|
|
|
# configuration rules file to use.
|
1999-12-17 00:11:37 +01:00
|
|
|
#
|
|
|
|
# Note that the configuration file is put in the current directory, which is
|
2000-03-05 02:14:19 +01:00
|
|
|
# not necessarily $(TOP).
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# If `config.mk' is not present, set `check_platform'.
|
1999-12-17 00:11:37 +01:00
|
|
|
#
|
|
|
|
ifeq ($(wildcard $(CONFIG_MK)),)
|
2000-03-05 02:14:19 +01:00
|
|
|
check_platform := 1
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# If `setup' is one of the targets requested, set `check_platform'.
|
1999-12-17 00:11:37 +01:00
|
|
|
#
|
|
|
|
ifneq ($(findstring setup,$(MAKECMDGOALS)),)
|
2000-03-05 02:14:19 +01:00
|
|
|
check_platform := 1
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# Include the automatic host platform detection rules when we need to
|
1999-12-17 00:11:37 +01:00
|
|
|
# check the platform.
|
|
|
|
#
|
|
|
|
ifdef check_platform
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
all: setup
|
1999-12-29 01:24:51 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# If the module list $(FT_MODULE_LIST) file is not present, generate it.
|
|
|
|
#
|
|
|
|
modules: make_module_list setup
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-07-08 02:41:13 +02:00
|
|
|
include $(TOP)/builds/detect.mk
|
|
|
|
include $(TOP)/builds/modules.mk
|
1999-12-29 01:24:51 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
ifeq ($(wildcard $(FT_MODULE_LIST)),)
|
|
|
|
setup: make_module_list
|
|
|
|
endif
|
1999-12-29 01:24:51 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# IMPORTANT:
|
|
|
|
#
|
|
|
|
# `setup' must be defined by the host platform detection rules to create
|
|
|
|
# the `config.mk' file in the current directory.
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
else
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# A configuration sub-Makefile is present -- simply run it.
|
|
|
|
#
|
A complete revision of FreeType 2's GNU makefiles (of the library):
Tons of unnecessary stuff have been removed; only the essential rules
have been retained.
The source files now depend on all header files in include/freetype,
include/freetype/config, and include/freetype/internal. This is not
optimal, I know, and I'll try to improve this, but it is better than
before (namely no dependencies on `internal').
FTDEBUG_SRC has been added (similar to FTSYS_SRC) -- I don't know
exactly whether this is really useful, but it doesn't harm.
There is now more documentation in the makefiles itself.
io-frames.html: Use of <th>, <code>, and <var> for better tagging.
Reactivating of FT_DEBUG_LEVEL_xxx macros.
Added a lot of #include directives to make `multi' builds possible -- note
that currently the modules cid, t1, and t1z have clashing structures and
functions which means that you can only use one of these three modules for a
multi build.
Added some missing function declarations to (local) header files.
Renamed some T1_Open_Face() to CID_Open_Face() in the cid module -- a lot
of other functions should be renamed also...
Replaced many FT_xxx stuff with T1_xxx in t1z driver -- this isn't finished
yet...
Fixed FT_Free() to allow a NULL pointer without an assertion (this has
always been a valid assumption in FreeType, at least in FT 1.x).
A lot of other, minor fixes (mostly documentation).
2000-06-11 05:46:57 +02:00
|
|
|
all: single
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
modules: make_module_list
|
1999-12-29 01:24:51 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
BUILD_FREETYPE := yes
|
|
|
|
include $(CONFIG_MK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
endif # test check_platform
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# EOF
|