msys.mk 469 B

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