2000-07-08 02:22:20 +02:00
|
|
|
|
#
|
|
|
|
|
# FreeType 2 host platform detection rules
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
2008-02-11 09:22:40 +01:00
|
|
|
|
# Copyright 1996-2000, 2001, 2002, 2003, 2006, 2008 by
|
2000-07-08 02:22:20 +02:00
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# This sub-Makefile is in charge of detecting the current platform. It sets
|
|
|
|
|
# the following variables:
|
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
|
# BUILD_DIR The configuration and system-specific directory. Usually
|
2000-07-08 02:41:13 +02:00
|
|
|
|
# `freetype/builds/$(PLATFORM)' but can be different for
|
2000-07-08 02:22:20 +02:00
|
|
|
|
# custom builds of the library.
|
|
|
|
|
#
|
|
|
|
|
# The following variables must be defined in system specific `detect.mk'
|
|
|
|
|
# files:
|
|
|
|
|
#
|
|
|
|
|
# PLATFORM The detected platform. This will default to `ansi' if
|
|
|
|
|
# auto-detection fails.
|
|
|
|
|
# CONFIG_FILE The configuration sub-makefile to use. This usually depends
|
|
|
|
|
# on the compiler defined in the `CC' environment variable.
|
|
|
|
|
# DELETE The shell command used to remove a given file.
|
|
|
|
|
# COPY The shell command used to copy one file.
|
|
|
|
|
# SEP The platform-specific directory separator.
|
2003-06-09 06:46:30 +02:00
|
|
|
|
# COMPILER_SEP The separator used in arguments of the compilation tools.
|
2000-07-08 02:22:20 +02:00
|
|
|
|
# CC The compiler to use.
|
|
|
|
|
#
|
|
|
|
|
# You need to set the following variable(s) before calling it:
|
|
|
|
|
#
|
2002-06-14 10:09:25 +02:00
|
|
|
|
# TOP_DIR The top-most directory in the FreeType library source
|
2000-07-08 02:22:20 +02:00
|
|
|
|
# hierarchy. If not defined, it will default to `.'.
|
|
|
|
|
|
|
|
|
|
# Set auto-detection default to `ansi' resp. UNIX-like operating systems.
|
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
|
PLATFORM := ansi
|
|
|
|
|
DELETE := $(RM)
|
|
|
|
|
COPY := cp
|
2006-12-09 21:01:43 +01:00
|
|
|
|
CAT := cat
|
2003-06-09 06:46:30 +02:00
|
|
|
|
SEP := /
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
2003-06-09 06:46:30 +02:00
|
|
|
|
BUILD_CONFIG := $(TOP_DIR)/builds
|
|
|
|
|
|
|
|
|
|
# These two assignments must be delayed.
|
|
|
|
|
BUILD_DIR = $(BUILD_CONFIG)/$(PLATFORM)
|
|
|
|
|
CONFIG_RULES = $(BUILD_DIR)/$(CONFIG_FILE)
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
|
|
|
|
# We define the BACKSLASH variable to hold a single back-slash character.
|
|
|
|
|
# This is needed because a line like
|
|
|
|
|
#
|
|
|
|
|
# SEP := \
|
|
|
|
|
#
|
|
|
|
|
# does not work with GNU Make (the backslash is interpreted as a line
|
|
|
|
|
# continuation). While a line like
|
|
|
|
|
#
|
|
|
|
|
# SEP := \\
|
|
|
|
|
#
|
|
|
|
|
# really defines $(SEP) as `\' on Unix, and `\\' on Dos and Windows!
|
|
|
|
|
#
|
|
|
|
|
BACKSLASH := $(strip \ )
|
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
# Find all auto-detectable platforms.
|
2000-07-08 02:22:20 +02:00
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
|
PLATFORMS := $(notdir $(subst /detect.mk,,$(wildcard $(BUILD_CONFIG)/*/detect.mk)))
|
|
|
|
|
.PHONY: $(PLATFORMS) ansi
|
2000-12-20 23:09:41 +01:00
|
|
|
|
|
|
|
|
|
# Filter out platform specified as setup target.
|
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
|
PLATFORM := $(firstword $(filter $(MAKECMDGOALS),$(PLATFORMS)))
|
2000-12-20 23:09:41 +01:00
|
|
|
|
|
|
|
|
|
# If no setup target platform was specified, enable auto-detection/
|
|
|
|
|
# default platform.
|
|
|
|
|
#
|
|
|
|
|
ifeq ($(PLATFORM),)
|
|
|
|
|
PLATFORM := ansi
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# If the user has explicitly asked for `ansi' on the command line,
|
|
|
|
|
# disable auto-detection.
|
|
|
|
|
#
|
|
|
|
|
ifeq ($(findstring ansi,$(MAKECMDGOALS)),)
|
|
|
|
|
# Now, include all detection rule files found in the `builds/<system>'
|
|
|
|
|
# directories. Note that the calling order of the various `detect.mk'
|
|
|
|
|
# files isn't predictable.
|
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
|
include $(wildcard $(BUILD_CONFIG)/*/detect.mk)
|
2000-12-20 23:09:41 +01:00
|
|
|
|
endif
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
|
|
|
|
# In case no detection rule file was successful, use the default.
|
|
|
|
|
#
|
|
|
|
|
ifndef CONFIG_FILE
|
|
|
|
|
CONFIG_FILE := ansi.mk
|
|
|
|
|
setup: std_setup
|
2000-12-20 23:09:41 +01:00
|
|
|
|
.PHONY: setup
|
2000-07-08 02:22:20 +02:00
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# The following targets are equivalent, with the exception that they use
|
|
|
|
|
# a slightly different syntax for the `echo' command.
|
|
|
|
|
#
|
|
|
|
|
# std_setup: defined for most (i.e. Unix-like) platforms
|
|
|
|
|
# dos_setup: defined for Dos-ish platforms like Dos, Windows & OS/2
|
|
|
|
|
#
|
|
|
|
|
.PHONY: std_setup dos_setup
|
|
|
|
|
|
|
|
|
|
std_setup:
|
|
|
|
|
@echo ""
|
2000-10-03 19:51:29 +02:00
|
|
|
|
@echo "$(PROJECT_TITLE) build system -- automatic system detection"
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo ""
|
|
|
|
|
@echo "The following settings are used:"
|
|
|
|
|
@echo ""
|
|
|
|
|
@echo " platform $(PLATFORM)"
|
|
|
|
|
@echo " compiler $(CC)"
|
2003-06-09 06:46:30 +02:00
|
|
|
|
@echo " configuration directory $(BUILD_DIR)"
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo " configuration rules $(CONFIG_RULES)"
|
|
|
|
|
@echo ""
|
|
|
|
|
@echo "If this does not correspond to your system or settings please remove the file"
|
|
|
|
|
@echo "\`$(CONFIG_MK)' from this directory then read the INSTALL file for help."
|
|
|
|
|
@echo ""
|
2003-07-09 17:20:32 +02:00
|
|
|
|
@echo "Otherwise, simply type \`$(MAKE)' again to build the library,"
|
|
|
|
|
@echo "or \`$(MAKE) refdoc' to build the API reference (the latter needs python)."
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo ""
|
|
|
|
|
@$(COPY) $(CONFIG_RULES) $(CONFIG_MK)
|
|
|
|
|
|
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
* builds/top_level.mk, builds/newline, builds/detect.mk: fixed problems
with Make on Windows 2000, as well as problems when "make distclean" is
invoked on a non-Unix platform when there is no "config.mk" in the
current directory..
* builds/freetype.mk: fixed a problem with object deletions under
Dos/Windows/OS/2 systems
* src/tools: added new directory to hold tools and test programs
moved docmaker.py, glnames.py to it..
* src/tools/docmaker.py: improved the script to add the current date
at the footer of each web page (useful to distinguish between versions)
* Jamfile: fixed incorrect HDRMACRO argument.
* TODO: removed the cubic arc bbox computation note, since it has been
fixed recently..
* include/freetype/t1tables.h, include/freetype/config/ftoption.h:
formatting
2001-05-11 16:25:57 +02:00
|
|
|
|
|
2001-05-12 08:40:50 +02:00
|
|
|
|
# Special case for Dos, Windows, OS/2, where echo "" doesn't work correctly!
|
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
* builds/top_level.mk, builds/newline, builds/detect.mk: fixed problems
with Make on Windows 2000, as well as problems when "make distclean" is
invoked on a non-Unix platform when there is no "config.mk" in the
current directory..
* builds/freetype.mk: fixed a problem with object deletions under
Dos/Windows/OS/2 systems
* src/tools: added new directory to hold tools and test programs
moved docmaker.py, glnames.py to it..
* src/tools/docmaker.py: improved the script to add the current date
at the footer of each web page (useful to distinguish between versions)
* Jamfile: fixed incorrect HDRMACRO argument.
* TODO: removed the cubic arc bbox computation note, since it has been
fixed recently..
* include/freetype/t1tables.h, include/freetype/config/ftoption.h:
formatting
2001-05-11 16:25:57 +02:00
|
|
|
|
#
|
2000-07-08 02:22:20 +02:00
|
|
|
|
dos_setup:
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@type builds$(SEP)newline
|
2000-10-03 19:51:29 +02:00
|
|
|
|
@echo $(PROJECT_TITLE) build system -- automatic system detection
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@type builds$(SEP)newline
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo The following settings are used:
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@type builds$(SEP)newline
|
* include/freetype/fttrigon.h, src/base/fttrigon.c, src/base/ftbase.c,
src/base/Jamfile, src/base/rules.mk: adding trigonometric functions
to the core API (using Cordic algorithms).
* builds/top_level.mk, builds/newline, builds/detect.mk: fixed problems
with Make on Windows 2000, as well as problems when "make distclean" is
invoked on a non-Unix platform when there is no "config.mk" in the
current directory..
* builds/freetype.mk: fixed a problem with object deletions under
Dos/Windows/OS/2 systems
* src/tools: added new directory to hold tools and test programs
moved docmaker.py, glnames.py to it..
* src/tools/docmaker.py: improved the script to add the current date
at the footer of each web page (useful to distinguish between versions)
* Jamfile: fixed incorrect HDRMACRO argument.
* TODO: removed the cubic arc bbox computation note, since it has been
fixed recently..
* include/freetype/t1tables.h, include/freetype/config/ftoption.h:
formatting
2001-05-11 16:25:57 +02:00
|
|
|
|
@echo platform<72><6D><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>$(PLATFORM)
|
|
|
|
|
@echo compiler<65><72><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>$(CC)
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@echo configuration directory<72><79><EFBFBD><EFBFBD><EFBFBD><EFBFBD>$(subst /,$(SEP),$(BUILD_DIR))
|
|
|
|
|
@echo configuration rules<65><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>$(subst /,$(SEP),$(CONFIG_RULES))
|
|
|
|
|
@type builds$(SEP)newline
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo If this does not correspond to your system or settings please remove the file
|
|
|
|
|
@echo '$(CONFIG_MK)' from this directory then read the INSTALL file for help.
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@type builds$(SEP)newline
|
2000-07-08 02:22:20 +02:00
|
|
|
|
@echo Otherwise, simply type 'make' again to build the library.
|
2003-07-09 17:20:32 +02:00
|
|
|
|
@echo or 'make refdoc' to build the API reference (the latter needs python).
|
2008-02-11 09:22:40 +01:00
|
|
|
|
@type builds$(SEP)newline
|
|
|
|
|
@$(COPY) $(subst /,$(SEP),$(CONFIG_RULES) $(CONFIG_MK)) > nul
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
2003-06-09 06:46:30 +02:00
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
|
# EOF
|