aboutsummaryrefslogtreecommitdiff
path: root/make_helpers/cygwin.mk
diff options
context:
space:
mode:
authorEvan Lloyd <evan.lloyd@arm.com>2015-12-03 11:35:40 +0000
committerEvan Lloyd <evan.lloyd@arm.com>2016-04-01 12:33:09 +0100
commit42a45b51aa9748c67654a9f7f4546b464856ca99 (patch)
treea88ac128a559cf807ca0b4e7a025e5f788f6cc79 /make_helpers/cygwin.mk
parentb169f6a9a1091224899e7d1872dfdd99b38e349e (diff)
downloadtrusted-firmware-a-42a45b51aa9748c67654a9f7f4546b464856ca99.tar.gz
Make:Allow for extension in tool names.
In some build environments executable programs have a specific file extension. The value of BIN_EXT is appended to the relevant tool file names to allow for this. The value of BIN_EXT is set, where appropriate, by the build environment specific make helper (to .exe for Windows build environments). .gitignore is updated to hide the new (.exe) files. Change-Id: Icc32f64b750e425265075ad4e0dea18129640b86
Diffstat (limited to 'make_helpers/cygwin.mk')
-rw-r--r--make_helpers/cygwin.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/make_helpers/cygwin.mk b/make_helpers/cygwin.mk
index f99be134a3..e69c0b1bab 100644
--- a/make_helpers/cygwin.mk
+++ b/make_helpers/cygwin.mk
@@ -37,4 +37,7 @@ ifndef CYGWIN_MK
include ${MAKE_HELPERS_DIRECTORY}unix.mk
+ # In cygwin executable files have the Windows .exe extension type.
+ BIN_EXT := .exe
+
endif