xref: /aosp_15_r20/external/freetype/builds/windows/win32-def.mk (revision 63949dbd25bcc50c4e1178497ff9e9574d44fc5a)
1#
2# FreeType 2 Win32 specific definitions
3#
4
5
6# Copyright (C) 1996-2023 by
7# David Turner, Robert Wilhelm, and Werner Lemberg.
8#
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.
14
15
16DELETE       := del
17CAT          := type
18SEP          := $(strip \ )
19PLATFORM_DIR := $(TOP_DIR)/builds/windows
20PLATFORM     := windows
21
22# This is used for `make refdoc' and `make refdoc-venv'
23#
24BIN := Scripts
25
26# The executable file extension (for tools). NOTE: WE INCLUDE THE DOT HERE !!
27#
28E := .exe
29E_BUILD := .exe
30
31
32# The directory where all library files are placed.
33#
34# By default, this is the same as $(OBJ_DIR); however, this can be changed
35# to suit particular needs.
36#
37LIB_DIR := $(OBJ_DIR)
38
39
40# The name of the final library file.  Note that the DOS-specific Makefile
41# uses a shorter (8.3) name.
42#
43LIBRARY := $(PROJECT)
44
45
46# The NO_OUTPUT macro is used to ignore the output of commands.
47#
48NO_OUTPUT = 2> nul
49
50
51# EOF
52