Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
8eb39a00
Unverified
Commit
8eb39a00
authored
Oct 23, 2018
by
Antonio Niño Díaz
Committed by
GitHub
Oct 23, 2018
Browse files
Merge pull request #1645 from antonio-nino-diaz-arm/an/fix-windows
Makefile: Fix verbose builds on Windows
parents
eb746c94
b5a0f4bd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
8eb39a00
...
...
@@ -78,12 +78,12 @@ ifeq (${V},0)
CHECKCODE_ARGS
+=
--no-summary
--terse
else
Q
:=
ECHO
:=
@
\#
ECHO
:=
$(ECHO_QUIET)
endif
ifneq
($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
Q
:=
@
ECHO
:=
@
\#
ECHO
:=
$(ECHO_QUIET)
endif
export
Q
ECHO
...
...
make_helpers/unix.mk
View file @
8eb39a00
#
# Copyright (c) 2016-201
7
, ARM Limited and Contributors. All rights reserved.
# Copyright (c) 2016-201
8
, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#
# Trusted Firmware shell command definitions for a Unix style environment.
...
...
@@ -11,6 +10,7 @@ ifndef UNIX_MK
UNIX_MK
:=
$(
lastword
$(MAKEFILE_LIST)
)
ECHO_BLANK_LINE
:=
echo
ECHO_QUIET
:=
@
\#
DIR_DELIM
:=
/
PATH_SEP
:=
:
...
...
make_helpers/windows.mk
View file @
8eb39a00
#
# Copyright (c) 2016-201
7
, ARM Limited and Contributors. All rights reserved.
# Copyright (c) 2016-201
8
, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#
# OS specific parts for builds in a Windows_NT environment. The
# environment variable OS is set to Windows_NT on all modern Windows platforms
...
...
@@ -14,6 +13,7 @@ ifndef WINDOWS_MK
WINDOWS_MK
:=
$(
lastword
$(MAKEFILE_LIST)
)
ECHO_BLANK_LINE
:=
@cmd /c echo.
ECHO_QUIET
:=
@rem
DIR_DELIM
:=
$(
strip
\)
BIN_EXT :
=
.exe
PATH_SEP :
=
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment