Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / modules / freetype2 / builds / unix / unix-def.in
blobb90ed0c4c55784a9f7df63be06b08b8b93387739
2 # FreeType 2 configuration rules templates for Unix + configure
6 # Copyright 1996-2000, 2002, 2004, 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 TOP_DIR := $(shell cd $(TOP_DIR); pwd)
18 DELETE    := @RMF@
19 DELDIR    := @RMDIR@
20 CAT       := cat
21 SEP       := /
23 # this is used for `make distclean' and `make install'
24 OBJ_BUILD ?= $(BUILD_DIR)
26 # don't use `:=' here since the path stuff will be included after this file
28 FTSYS_SRC = @FTSYS_SRC@
30 INSTALL         := @INSTALL@
31 INSTALL_DATA    := @INSTALL_DATA@
32 INSTALL_PROGRAM := @INSTALL_PROGRAM@
33 INSTALL_SCRIPT  := @INSTALL_SCRIPT@
34 MKINSTALLDIRS   := $(BUILD_DIR)/mkinstalldirs
36 DISTCLEAN += $(OBJ_BUILD)/config.cache    \
37              $(OBJ_BUILD)/config.log      \
38              $(OBJ_BUILD)/config.status   \
39              $(OBJ_BUILD)/unix-def.mk     \
40              $(OBJ_BUILD)/unix-cc.mk      \
41              $(OBJ_BUILD)/ftconfig.h      \
42              $(OBJ_BUILD)/freetype-config \
43              $(OBJ_BUILD)/freetype2.pc    \
44              $(LIBTOOL)                   \
45              $(OBJ_BUILD)/Makefile
48 # Standard installation variables.
50 prefix       := @prefix@
51 exec_prefix  := @exec_prefix@
52 libdir       := @libdir@
53 bindir       := @bindir@
54 includedir   := @includedir@
55 datarootdir  := @datarootdir@
56 datadir      := @datadir@
58 version_info := @version_info@
61 # The directory where all library files are placed.
63 # By default, this is the same as $(OBJ_DIR); however, this can be changed
64 # to suit particular needs.
66 LIB_DIR := $(OBJ_DIR)
69 # The SYSTEM_ZLIB macro is defined if the user wishes to link dynamically
70 # with its system wide zlib. If SYSTEM_ZLIB is 'yes', the zlib part of the
71 # ftgzip module is not compiled in.
72 SYSTEM_ZLIB := @SYSTEM_ZLIB@
75 # The NO_OUTPUT macro is appended to command lines in order to ignore
76 # the output of some programs.
78 NO_OUTPUT := 2> /dev/null
81 # EOF