mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / builds / compiler / ee-gcc.mk
blobe8d96978ce85de14c305b7e2bffd3ce18d951f5f
2 # FreeType 2 Emotion Engine ee-gcc-specific definitions
3 # modified by Nic
7 # Copyright 1996-2000, 2003, 2005, 2006, 2009 by
8 # David Turner, Robert Wilhelm, and Werner Lemberg.
10 # This file is part of the FreeType project, and may only be used, modified,
11 # and distributed under the terms of the FreeType project license,
12 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
13 # indicate that you have read the license and understand and accept it
14 # fully.
17 # Compiler command line name
19 CC := ee-gcc
20 COMPILER_SEP := /
23 # The object file extension (for standard and static libraries). This can be
24 # .o, .tco, .obj, etc., depending on the platform.
26 O := o
27 SO := o
29 # The library file extension (for standard and static libraries). This can
30 # be .a, .lib, etc., depending on the platform.
32 A := a
33 SA := a
36 # Path inclusion flag. Some compilers use a different flag than `-I' to
37 # specify an additional include path. Examples are `/i=' or `-J'.
39 I := -I
42 # C flag used to define a macro before the compilation of a given source
43 # object. Usually it is `-D' like in `-DDEBUG'.
45 D := -D
48 # The link flag used to specify a given library file on link. Note that
49 # this is only used to compile the demo programs, not the library itself.
51 L := -l
54 # Target flag.
56 T := -o$(space)
58 # C flags
60 # These should concern: debug output, optimization & warnings.
62 # Use the ANSIFLAGS variable to define the compiler flags used to enfore
63 # ANSI compliance.
65 CFLAGS ?= -c -g -O2 -G0 -Wall -I$(EE)/include -I$(PS2SDK)/common/include -I$(PS2SDK)/ee/include
67 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
69 ANSIFLAGS := -ansi -pedantic
72 # Library linking
74 CLEAN_LIBRARY ?= $(DELETE) $(subst /,$(SEP),$(PROJECT_LIBRARY))
75 LINK_LIBRARY = ee-ar -r $@ $(OBJECTS_LIST)
78 # EOF