4c80f0c9ca
* builds/compiler/bcc-dev.mk, builds/compiler/visualage.mk, builds/compiler/bcc.mk, builds/win32/w32-bcc.mk, builds/win32/w32-bccd.mk: Revised. * include/freetype/config/ftbuild.h, include/freetype/internal/internal.h: Revised. * include/freetype/ftimage.h: Updated to new header inclusion scheme. * builds/toplevel.mk (.PHONY): Adding `distclean'. * builds/unix/detect.mk (.PHONY): Adding `devel', `unix', `lcc', `setup'. * INSTALL: Slightly updated the quick starter documentation to include IDE compilation, prevent against BSD Make, and specify "make setup" instead of a single "make" for build configuration. * include/config/ftbuild.h, include/internal/internal.h: Added new configuration files used to determine the location of all public, configuration, and internal header files for FreeType 2. Modified all headers under "include/freetype" to reflect this change. Note that we still need to change the library source files themselves though. builds/win32/detect.mk: Added new files to support compilation with the free Borland C++ command-line compiler. Modified the detection rules to recognize the new "bcc32" target in "make setup bcc32". src/truetype/ttobjs.c, src/truetype/ttgload.c, src/truetype/ttinterp.c: Fixed a few comparisons that Borland C++ didn't really like. Basically, this compiler complains when FT_UInt is compared to FT_UShort (apparently, it promotes `UShort' to `Int' in these cases).
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
#
|
|
# FreeType 2 configuration file to detect a UNIX host platform.
|
|
#
|
|
|
|
|
|
# Copyright 1996-2000 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.
|
|
|
|
.PHONY: devel lcc setup unix
|
|
|
|
ifeq ($(PLATFORM),ansi)
|
|
|
|
has_init := $(strip $(wildcard /sbin/init))
|
|
ifneq ($(has_init),)
|
|
|
|
PLATFORM := unix
|
|
COPY := cp
|
|
DELETE := rm -f
|
|
|
|
|
|
# If `devel' is the requested target, we use a special configuration
|
|
# file named `unix-dev.mk'. It disables optimization and libtool.
|
|
#
|
|
ifneq ($(findstring devel,$(MAKECMDGOALS)),)
|
|
CONFIG_FILE := unix-dev.mk
|
|
CC := gcc
|
|
devel: setup
|
|
else
|
|
|
|
# If `lccl' is the requested target, we use a special configuration
|
|
# file named `unix-lcc.mk'. It disables libtool for LCC
|
|
#
|
|
ifneq ($(findstring lcc,$(MAKECMDGOALS)),)
|
|
CONFIG_FILE := unix-lcc.mk
|
|
CC := lcc
|
|
lcc: setup
|
|
else
|
|
# If a Unix platform is detected, the configure script is called and
|
|
# `unix-def.mk' together with `unix-cc.mk' is created.
|
|
#
|
|
# Arguments to `configure' should be in the CFG variable. Example:
|
|
#
|
|
# make CFG="--prefix=/usr --disable-static"
|
|
#
|
|
# If you need to set CFLAGS or LDFLAGS, do it here also.
|
|
#
|
|
# Feel free to add support for other platform specific compilers in
|
|
# this directory (e.g. solaris.mk + changes here to detect the
|
|
# platform).
|
|
#
|
|
CONFIG_FILE := unix.mk
|
|
setup: unix-def.mk
|
|
unix: setup
|
|
endif
|
|
endif
|
|
|
|
setup: std_setup
|
|
|
|
unix-def.mk: $(TOP)/builds/unix/unix-def.in
|
|
cd builds/unix; $(USE_CFLAGS) ./configure $(CFG)
|
|
|
|
endif # test Unix
|
|
endif # test PLATFORM
|
|
|
|
# EOF
|