win32-def.mk (1153B)
1 # 2 # FreeType 2 Win32 specific definitions 3 # 4 5 6 # Copyright (C) 1996-2025 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 16 DELETE := del 17 CAT := type 18 SEP := $(strip \ ) 19 PLATFORM_DIR := $(TOP_DIR)/builds/windows 20 PLATFORM := windows 21 22 # This is used for `make refdoc' and `make refdoc-venv' 23 # 24 BIN := Scripts 25 26 # The executable file extension (for tools). NOTE: WE INCLUDE THE DOT HERE !! 27 # 28 E := .exe 29 E_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 # 37 LIB_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 # 43 LIBRARY := $(PROJECT) 44 45 46 # The NO_OUTPUT macro is used to ignore the output of commands. 47 # 48 NO_OUTPUT = 2> nul 49 50 51 # EOF