blob: 04a963ff3775257e1c483236dbbda770bba8e537 [file] [log] [blame]
Evan Lloyde7f54db2015-12-02 18:56:06 +00001#
2# Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3#
dp-arm82cb2c12017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Evan Lloyde7f54db2015-12-02 18:56:06 +00005#
6#
7
8# OS specific definitions for builds in a Cygwin environment.
9# Cygwin allows us to use unix style commands on a windows platform.
10
11ifndef CYGWIN_MK
12 CYGWIN_MK := $(lastword $(MAKEFILE_LIST))
13
14 include ${MAKE_HELPERS_DIRECTORY}unix.mk
15
Evan Lloyd42a45b52015-12-03 11:35:40 +000016 # In cygwin executable files have the Windows .exe extension type.
17 BIN_EXT := .exe
18
Evan Lloyde7f54db2015-12-02 18:56:06 +000019endif