1# 2# FreeType 2 Win32 specific definitions 3# 4 5 6# Copyright 1996-2018 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 \ ) 19BUILD_DIR := $(TOP_DIR)/builds/windows 20PLATFORM := windows 21 22# The executable file extension (for tools). NOTE: WE INCLUDE THE DOT HERE !! 23# 24E := .exe 25E_BUILD := .exe 26 27 28# The directory where all library files are placed. 29# 30# By default, this is the same as $(OBJ_DIR); however, this can be changed 31# to suit particular needs. 32# 33LIB_DIR := $(OBJ_DIR) 34 35 36# The name of the final library file. Note that the DOS-specific Makefile 37# uses a shorter (8.3) name. 38# 39LIBRARY := $(PROJECT) 40 41 42# The NO_OUTPUT macro is used to ignore the output of commands. 43# 44NO_OUTPUT = 2> nul 45 46 47# EOF 48