2000-07-08 02:22:20 +02:00
|
|
|
|
#
|
|
|
|
|
# FreeType 2 configuration file to detect a Win32 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.
|
|
|
|
|
|
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
.PHONY: setup
|
|
|
|
|
|
|
|
|
|
|
2000-07-08 02:22:20 +02:00
|
|
|
|
ifeq ($(PLATFORM),ansi)
|
|
|
|
|
|
|
|
|
|
# Detecting Windows NT is easy, as the OS variable must be defined and
|
|
|
|
|
# contains `Windows_NT'. Untested with Windows 2K, but I guess it should
|
|
|
|
|
# work...
|
|
|
|
|
#
|
|
|
|
|
ifeq ($(OS),Windows_NT)
|
2000-10-31 21:42:18 +01:00
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
is_windows := 1
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
# We test for the COMSPEC environment variable, then run the `ver'
|
|
|
|
|
# command-line program to see if its output contains the word `Windows'.
|
|
|
|
|
#
|
|
|
|
|
# If this is true, we are running a win32 platform (or an emulation).
|
|
|
|
|
#
|
2000-07-08 02:22:20 +02:00
|
|
|
|
else
|
2000-12-20 23:09:41 +01:00
|
|
|
|
ifdef COMSPEC
|
|
|
|
|
is_windows := $(findstring Windows,$(strip $(shell ver)))
|
|
|
|
|
endif
|
2000-07-08 02:22:20 +02:00
|
|
|
|
endif # test NT
|
|
|
|
|
|
|
|
|
|
ifdef is_windows
|
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
PLATFORM := win32
|
|
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
endif # test PLATFORM ansi
|
|
|
|
|
|
|
|
|
|
ifeq ($(PLATFORM),win32)
|
|
|
|
|
|
|
|
|
|
DELETE := del
|
|
|
|
|
COPY := copy
|
|
|
|
|
|
|
|
|
|
# gcc Makefile by default
|
|
|
|
|
CONFIG_FILE := w32-gcc.mk
|
|
|
|
|
SEP := /
|
|
|
|
|
ifeq ($(firstword $(CC)),cc)
|
|
|
|
|
CC := gcc
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring list,$(MAKECMDGOALS)),) # test for the "list" target
|
|
|
|
|
dump_target_list:
|
|
|
|
|
@echo <20>
|
|
|
|
|
@echo $(PROJECT_TITLE) build system -- supported compilers
|
|
|
|
|
@echo <20>
|
|
|
|
|
@echo Several command-line compilers are supported on Win32:
|
|
|
|
|
@echo <20>
|
|
|
|
|
@echo <20><>make setup<75><70><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>gcc (with Mingw)
|
|
|
|
|
@echo <20><>make setup visualc<6C><63><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Microsoft Visual C++
|
|
|
|
|
@echo <20><>make setup bcc32<33><32><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Borland C/C++
|
|
|
|
|
@echo <20><>make setup lcc<63><63><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Win32-LCC
|
|
|
|
|
@echo <20><>make setup intelc<6C><63><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Intel C/C++
|
|
|
|
|
@echo <20>
|
|
|
|
|
|
|
|
|
|
setup: dump_target_list
|
|
|
|
|
.PHONY: dump_target_list list
|
|
|
|
|
else
|
|
|
|
|
setup: dos_setup
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
# additionally, we provide hooks for various other compilers
|
|
|
|
|
#
|
|
|
|
|
ifneq ($(findstring visualc,$(MAKECMDGOALS)),) # Visual C/C++
|
|
|
|
|
CONFIG_FILE := w32-vcc.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := cl
|
|
|
|
|
visualc: setup
|
|
|
|
|
.PHONY: visualc
|
|
|
|
|
endif
|
|
|
|
|
|
* builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
Renamed "ftnames.h" to "ftsnames.h", and FT_NAMES_H to
FT_SFNT_NAMES_H.
* docs/docmaker.py: Added generation of INDEX link in table of
contents.
* INSTALL, docs/BUILD: Updated documentation to indicate that the
compilation process has changed slightly (no more `src' required in
* builds/*/*-def.mk: Changed the objects directory from "obj" to
"objs".
* include/freetype/config/ftheader.h: Removed obsolete macros like
FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
were previously defined in <freetype/ftcache.h>. Added comments to
be included in a new API Reference section.
* src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
component needs to add its own directory to the include path at
compile time. Modified all "rules.mk" and "descrip.mms"
accordingly.
* src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
compiler warnings in pedantic modes.
* include/config/ft2build.h, include/config/ftheader.h: The file
top-level <ft2build.h>.
* include/config/ftheader.h: Added new section describing the #include
macros.
the Type 2 glyph charstring (used by conversion programs).
* docs/docmaker.py: Added cross-references generation as well as
seac emulation provided by the Type 2 endchar operator.
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
Added support for clipped direct rendering in the smooth renderer.
* src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
2001-03-20 23:58:56 +01:00
|
|
|
|
ifneq ($(findstring intelc,$(MAKECMDGOALS)),) # Intel C/C++
|
2001-03-20 12:14:24 +01:00
|
|
|
|
CONFIG_FILE := w32-intl.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := cl
|
|
|
|
|
visualc: setup
|
* builds/win32/detekt.mk: Fix .PHONY target for Intel compiler.
Renamed "ftnames.h" to "ftsnames.h", and FT_NAMES_H to
FT_SFNT_NAMES_H.
* docs/docmaker.py: Added generation of INDEX link in table of
contents.
* INSTALL, docs/BUILD: Updated documentation to indicate that the
compilation process has changed slightly (no more `src' required in
* builds/*/*-def.mk: Changed the objects directory from "obj" to
"objs".
* include/freetype/config/ftheader.h: Removed obsolete macros like
FT_SOURCE_FILE, etc. and added cache-specific macro definitions that
were previously defined in <freetype/ftcache.h>. Added comments to
be included in a new API Reference section.
* src/*/*: Removed the use of FT_SOURCE_FILE, etc. Now, each
component needs to add its own directory to the include path at
compile time. Modified all "rules.mk" and "descrip.mms"
accordingly.
* src/cid/cidobjs.c, src/cid/cidload.c, src/pcf/pcfread.c,
src/type1/t1load.c, src/type1/t1objs.c: Added a few casts to remove
compiler warnings in pedantic modes.
* include/config/ft2build.h, include/config/ftheader.h: The file
top-level <ft2build.h>.
* include/config/ftheader.h: Added new section describing the #include
macros.
the Type 2 glyph charstring (used by conversion programs).
* docs/docmaker.py: Added cross-references generation as well as
seac emulation provided by the Type 2 endchar operator.
* src/cid/cidafm.c, src/cid/cidafm.h: removed un-needed files,
Added support for clipped direct rendering in the smooth renderer.
* src/cff/t2objs.c (T2_Init_Face): For pure CFF fonts, set
2001-03-20 23:58:56 +01:00
|
|
|
|
.PHONY: intelc
|
2001-03-20 12:14:24 +01:00
|
|
|
|
endif
|
|
|
|
|
|
2000-12-20 23:09:41 +01:00
|
|
|
|
ifneq ($(findstring watcom,$(MAKECMDGOALS)),) # Watcom C/C++
|
|
|
|
|
CONFIG_FILE := w32-wat.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := wcc386
|
|
|
|
|
watcom: setup
|
|
|
|
|
.PHONY: watcom
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring visualage,$(MAKECMDGOALS)),) # Visual Age C++
|
|
|
|
|
CONFIG_FILE := w32-icc.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := icc
|
|
|
|
|
visualage: setup
|
|
|
|
|
.PHONY: visualage
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring lcc,$(MAKECMDGOALS)),) # LCC-Win32
|
|
|
|
|
CONFIG_FILE := w32-lcc.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := lcc
|
|
|
|
|
lcc: setup
|
|
|
|
|
.PHONY: lcc
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring mingw32,$(MAKECMDGOALS)),) # mingw32
|
|
|
|
|
CONFIG_FILE := w32-mingw32.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := gcc
|
|
|
|
|
mingw32: setup
|
|
|
|
|
.PHONY: mingw32
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring bcc32,$(MAKECMDGOALS)),) # Borland C++
|
|
|
|
|
CONFIG_FILE := w32-bcc.mk
|
|
|
|
|
SEP := $(BACKSLASH)
|
|
|
|
|
CC := bcc32
|
|
|
|
|
bcc32: setup
|
|
|
|
|
.PHONY: bcc32
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring devel-bcc,$(MAKECMDGOALS)),) # development target
|
|
|
|
|
CONFIG_FILE := w32-bccd.mk
|
|
|
|
|
CC := bcc32
|
|
|
|
|
SEP := /
|
|
|
|
|
devel-bcc: setup
|
|
|
|
|
.PHONY: devel-bcc
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifneq ($(findstring devel-gcc,$(MAKECMDGOALS)),) # development target
|
|
|
|
|
CONFIG_FILE := w32-dev.mk
|
|
|
|
|
CC := gcc
|
|
|
|
|
SEP := /
|
|
|
|
|
devel-gcc: setup
|
|
|
|
|
.PHONY: devel-gcc
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
endif # test PLATFORM win32
|
2000-07-08 02:22:20 +02:00
|
|
|
|
|
|
|
|
|
# EOF
|