2000-09-16 00:42:06 +02:00
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
# FreeType 2 template for Unix-specific compiler definitions
|
|
|
|
#
|
|
|
|
|
2017-01-04 20:16:34 +01:00
|
|
|
# Copyright 1996-2017 by
|
2003-06-09 06:46:30 +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.
|
2000-09-16 00:42:06 +02:00
|
|
|
|
2003-06-09 06:46:30 +02:00
|
|
|
|
|
|
|
CC := @CC@
|
|
|
|
COMPILER_SEP := $(SEP)
|
2010-08-31 11:32:03 +02:00
|
|
|
FT_LIBTOOL_DIR ?= $(BUILD_DIR)
|
2000-09-22 23:23:29 +02:00
|
|
|
|
2010-08-31 11:32:03 +02:00
|
|
|
LIBTOOL := $(FT_LIBTOOL_DIR)/libtool
|
2000-09-16 00:42:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
# The object file extension (for standard and static libraries). This can be
|
|
|
|
# .o, .tco, .obj, etc., depending on the platform.
|
|
|
|
#
|
|
|
|
O := lo
|
|
|
|
SO := o
|
|
|
|
|
2000-09-22 23:23:29 +02:00
|
|
|
|
2006-10-15 10:58:40 +02:00
|
|
|
# The executable file extension. Although most Unix platforms use no
|
|
|
|
# extension, we copy the extension detected by autoconf. Useful for cross
|
|
|
|
# building on Unix systems for non-Unix systems.
|
2006-10-14 15:08:05 +02:00
|
|
|
#
|
2006-10-15 10:58:40 +02:00
|
|
|
E := @EXEEXT@
|
|
|
|
|
2006-10-14 15:08:05 +02:00
|
|
|
|
2000-09-16 00:42:06 +02:00
|
|
|
# The library file extension (for standard and static libraries). This can
|
|
|
|
# be .a, .lib, etc., depending on the platform.
|
|
|
|
#
|
|
|
|
A := la
|
|
|
|
SA := a
|
|
|
|
|
|
|
|
|
|
|
|
# The name of the final library file. Note that the DOS-specific Makefile
|
|
|
|
# uses a shorter (8.3) name.
|
|
|
|
#
|
|
|
|
LIBRARY := lib$(PROJECT)
|
|
|
|
|
|
|
|
|
|
|
|
# Path inclusion flag. Some compilers use a different flag than `-I' to
|
|
|
|
# specify an additional include path. Examples are `/i=' or `-J'.
|
|
|
|
#
|
|
|
|
I := -I
|
|
|
|
|
|
|
|
|
|
|
|
# C flag used to define a macro before the compilation of a given source
|
2000-09-22 23:23:29 +02:00
|
|
|
# object. Usually it is `-D' like in `-DDEBUG'.
|
2000-09-16 00:42:06 +02:00
|
|
|
#
|
|
|
|
D := -D
|
|
|
|
|
|
|
|
|
|
|
|
# The link flag used to specify a given library file on link. Note that
|
|
|
|
# this is only used to compile the demo programs, not the library itself.
|
|
|
|
#
|
|
|
|
L := -l
|
|
|
|
|
|
|
|
|
|
|
|
# Target flag.
|
|
|
|
#
|
2003-06-09 06:46:30 +02:00
|
|
|
T := -o$(space)
|
2000-09-16 00:42:06 +02:00
|
|
|
|
|
|
|
|
|
|
|
# C flags
|
|
|
|
#
|
|
|
|
# These should concern: debug output, optimization & warnings.
|
|
|
|
#
|
|
|
|
# Use the ANSIFLAGS variable to define the compiler flags used to enfore
|
|
|
|
# ANSI compliance.
|
|
|
|
#
|
2003-11-09 09:37:14 +01:00
|
|
|
# We use our own FreeType configuration file.
|
|
|
|
#
|
2005-11-04 07:58:49 +01:00
|
|
|
CPPFLAGS := @CPPFLAGS@
|
|
|
|
CFLAGS := -c @XX_CFLAGS@ @CFLAGS@ -DFT_CONFIG_CONFIG_H="<ftconfig.h>"
|
2000-09-16 00:42:06 +02:00
|
|
|
|
|
|
|
# ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
|
|
|
|
#
|
|
|
|
ANSIFLAGS := @XX_ANSIFLAGS@
|
|
|
|
|
|
|
|
# C compiler to use -- we use libtool!
|
|
|
|
#
|
|
|
|
#
|
|
|
|
CCraw := $(CC)
|
|
|
|
CC := $(LIBTOOL) --mode=compile $(CCraw)
|
|
|
|
|
|
|
|
# Linker flags.
|
|
|
|
#
|
|
|
|
LDFLAGS := @LDFLAGS@
|
|
|
|
|
|
|
|
|
2006-10-14 15:08:05 +02:00
|
|
|
# export symbols
|
2005-10-28 18:14:14 +02:00
|
|
|
#
|
2006-10-14 15:08:05 +02:00
|
|
|
CCraw_build := @CC_BUILD@ # native CC of building system
|
2017-01-25 05:56:59 +01:00
|
|
|
E_BUILD := @EXEEXT_BUILD@ # extension for executable on building system
|
2005-10-28 18:14:14 +02:00
|
|
|
EXPORTS_LIST := $(OBJ_DIR)/ftexport.sym
|
2006-10-15 10:58:40 +02:00
|
|
|
CCexe := $(CCraw_build) # used to compile `apinames' only
|
2005-10-28 18:14:14 +02:00
|
|
|
|
|
|
|
|
2000-09-16 00:42:06 +02:00
|
|
|
# Library linking
|
|
|
|
#
|
|
|
|
LINK_LIBRARY = $(LIBTOOL) --mode=link $(CCraw) -o $@ $(OBJECTS_LIST) \
|
2002-12-23 23:40:21 +01:00
|
|
|
-rpath $(libdir) -version-info $(version_info) \
|
2006-05-26 08:30:05 +02:00
|
|
|
$(LDFLAGS) -no-undefined \
|
2016-05-23 06:49:38 +02:00
|
|
|
-export-symbols $(EXPORTS_LIST)
|
2003-06-09 06:46:30 +02:00
|
|
|
|
2000-09-22 23:23:29 +02:00
|
|
|
# EOF
|