cygwin.mk 462 B

12345678910111213141516171819
  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 Cygwin environment.
  8. # Cygwin allows us to use unix style commands on a windows platform.
  9. ifndef CYGWIN_MK
  10. CYGWIN_MK := $(lastword $(MAKEFILE_LIST))
  11. include ${MAKE_HELPERS_DIRECTORY}unix.mk
  12. # In cygwin executable files have the Windows .exe extension type.
  13. BIN_EXT := .exe
  14. endif