Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / builds / unix / unix-cc.in
blob9c6d5de6e54d5c60fe12b04d7428b560b06a3443
2 # FreeType 2 template for Unix-specific compiler definitions
5 # Copyright 1996-2000, 2002, 2003, 2005, 2006 by
6 # David Turner, Robert Wilhelm, and Werner Lemberg.
8 # This file is part of the FreeType project, and may only be used, modified,
9 # and distributed under the terms of the FreeType project license,
10 # LICENSE.TXT.  By continuing to use, modify, or distribute this file you
11 # indicate that you have read the license and understand and accept it
12 # fully.
15 CC           := @CC@
16 COMPILER_SEP := $(SEP)
18 LIBTOOL ?= $(BUILD_DIR)/libtool
21 # The object file extension (for standard and static libraries).  This can be
22 # .o, .tco, .obj, etc., depending on the platform.
24 O  := lo
25 SO := o
28 # The executable file extension.  Although most Unix platforms use no
29 # extension, we copy the extension detected by autoconf.  Useful for cross
30 # building on Unix systems for non-Unix systems.
32 E := @EXEEXT@
35 # The library file extension (for standard and static libraries).  This can
36 # be .a, .lib, etc., depending on the platform.
38 A  := la
39 SA := a
42 # The name of the final library file.  Note that the DOS-specific Makefile
43 # uses a shorter (8.3) name.
45 LIBRARY := lib$(PROJECT)
48 # Path inclusion flag.  Some compilers use a different flag than `-I' to
49 # specify an additional include path.  Examples are `/i=' or `-J'.
51 I := -I
54 # C flag used to define a macro before the compilation of a given source
55 # object.  Usually it is `-D' like in `-DDEBUG'.
57 D := -D
60 # The link flag used to specify a given library file on link.  Note that
61 # this is only used to compile the demo programs, not the library itself.
63 L := -l
66 # Target flag.
68 T := -o$(space)
71 # C flags
73 #   These should concern: debug output, optimization & warnings.
75 #   Use the ANSIFLAGS variable to define the compiler flags used to enfore
76 #   ANSI compliance.
78 #   We use our own FreeType configuration file.
80 CPPFLAGS := @CPPFLAGS@
81 CFLAGS   := -c @XX_CFLAGS@ @CFLAGS@ -DFT_CONFIG_CONFIG_H="<ftconfig.h>"
83 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
85 ANSIFLAGS := @XX_ANSIFLAGS@
87 # C compiler to use -- we use libtool!
90 CCraw := $(CC)
91 CC    := $(LIBTOOL) --mode=compile $(CCraw)
93 # Linker flags.
95 LDFLAGS := @LDFLAGS@
98 # export symbols
100 CCraw_build  := @CC_BUILD@      # native CC of building system
101 E_BUILD      := @EXEEXT_BUILD@  # extension for exexutable on building system
102 EXPORTS_LIST := $(OBJ_DIR)/ftexport.sym
103 CCexe        := $(CCraw_build)  # used to compile `apinames' only
106 # Library linking
108 LINK_LIBRARY = $(LIBTOOL) --mode=link $(CCraw) -o $@ $(OBJECTS_LIST) \
109                           -rpath $(libdir) -version-info $(version_info) \
110                           $(LDFLAGS) -no-undefined \
111                           # -export-symbols $(EXPORTS_LIST)
113 # EOF