Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / modules / freetype2 / builds / beos / beos-def.mk
blob4371a30aa3c29a85eb51e5a1aa64ba07447f12d8
2 # FreeType 2 configuration rules for a BeOS system
4 # this is similar to the "ansi-def.mk" file, except for BUILD and PLATFORM
8 # Copyright 1996-2000, 2003, 2006 by
9 # David Turner, Robert Wilhelm, and Werner Lemberg.
11 # This file is part of the FreeType project, and may only be used, modified,
12 # and distributed under the terms of the FreeType project license,
13 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
14 # indicate that you have read the license and understand and accept it
15 # fully.
18 DELETE := rm -f
19 CAT := cat
20 SEP := /
21 BUILD_DIR := $(TOP_DIR)/builds/beos
22 PLATFORM := beos
25 # The directory where all library files are placed.
27 # By default, this is the same as $(OBJ_DIR); however, this can be changed
28 # to suit particular needs.
30 LIB_DIR := $(OBJ_DIR)
33 # The name of the final library file. Note that the DOS-specific Makefile
34 # uses a shorter (8.3) name.
36 LIBRARY := lib$(PROJECT)
39 # Path inclusion flag. Some compilers use a different flag than `-I' to
40 # specify an additional include path. Examples are `/i=' or `-J'.
42 I := -I
45 # C flag used to define a macro before the compilation of a given source
46 # object. Usually it is `-D' like in `-DDEBUG'.
48 D := -D
51 # The link flag used to specify a given library file on link. Note that
52 # this is only used to compile the demo programs, not the library itself.
54 L := -l
57 # Target flag.
59 T := -o$(space)
62 # C flags
64 # These should concern: debug output, optimization & warnings.
66 # Use the ANSIFLAGS variable to define the compiler flags used to enfore
67 # ANSI compliance.
69 CFLAGS ?= -c
71 # ANSIFLAGS: Put there the flags used to make your compiler ANSI-compliant.
73 ANSIFLAGS :=
76 # EOF