1 # 2 # Copyright (c) 2016, ARM Limited and Contributors. All rights reserved. 3 # 4 # SPDX-License-Identifier: BSD-3-Clause 5 # 6 # 7 8 # OS specific definitions for builds in a Mingw32 MSYS environment. 9 # Mingw32 allows us to use some unix style commands on a windows platform. 10 11 ifndef MSYS_MK 12 MSYS_MK := $(lastword $(MAKEFILE_LIST)) 13 14 include ${MAKE_HELPERS_DIRECTORY}unix.mk 15 16 # In MSYS executable files have the Windows .exe extension type. 17 BIN_EXT := .exe 18 19 endif 20 21