mgh: fix for default HDD DMA mode, that wasn't correctly set
[open-ps2-loader.git] / thirdparty / freetype-2.3.12 / builds / compiler / intelc.mk
blob413ce5bacc77ad9567d46d3a08528a8367776a6e
2 # FreeType 2 Intel C/C++ definitions (VC++ compatibility mode)
6 # Copyright 1996-2000, 2003, 2006 by
7 # David Turner, Robert Wilhelm, and Werner Lemberg.
9 # This file is part of the FreeType project, and may only be used, modified,
10 # and distributed under the terms of the FreeType project license,
11 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
12 # indicate that you have read the license and understand and accept it
13 # fully.
16 # compiler command line name
18 CC := icl
19 COMPILER_SEP := $(SEP)
22 # The object file extension (for standard and static libraries). This can be
23 # .o, .tco, .obj, etc., depending on the platform.
25 O := obj
26 SO := obj
29 # The library file extension (for standard and static libraries). This can
30 # be .a, .lib, etc., depending on the platform.
32 A := lib
33 SA := lib
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 := /Fl
54 # Target flag.
56 T := /Fo
57 TE := /Fe
60 # C flags
62 # These should concern: debug output, optimization & warnings.
64 # Use the ANSIFLAGS variable to define the compiler flags used to enfore
65 # ANSI compliance.
67 # Note that the Intel C/C++ compiler version 4.5 complains about
68 # the use of FT_FIELD_OFFSET with "value must be arithmetic type"!
69 # This really looks like a bug in the compiler because the macro
70 # _does_ compute an arithmetic value, so we disable this warning
71 # with "/Qwd32".
73 CFLAGS ?= /nologo /c /Ox /G5 /W3 /Qwd32
75 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
77 ANSIFLAGS := /Qansi_alias /Za
79 # Library linking
81 #CLEAN_LIBRARY =
82 LINK_LIBRARY = lib /nologo /out:$(subst /,$(COMPILER_SEP),$@ $(OBJECTS_LIST))
85 # EOF