blob: 7ed8e84ce137e337fb5da9799dc3584c1608132f [file] [log] [blame]
Evan Lloyda71d2592015-12-02 18:56:06 +00001#
Chris Kay523e8642023-12-04 12:03:51 +00002# Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Evan Lloyda71d2592015-12-02 18:56:06 +00003#
dp-armfa3cf0b2017-05-03 09:38:09 +01004# SPDX-License-Identifier: BSD-3-Clause
Evan Lloyda71d2592015-12-02 18:56:06 +00005#
Evan Lloyda71d2592015-12-02 18:56:06 +00006
7# OS specific parts for builds in a Windows_NT environment. The
8# environment variable OS is set to Windows_NT on all modern Windows platforms
9
10# Include generic windows command definitions.
11
12ifndef WINDOWS_MK
13 WINDOWS_MK := $(lastword $(MAKEFILE_LIST))
14
15 ECHO_BLANK_LINE := @cmd /c echo.
Antonio Nino Diazffd122b2018-10-19 15:44:30 +010016 ECHO_QUIET := @rem
Evan Lloyda71d2592015-12-02 18:56:06 +000017 DIR_DELIM := $(strip \)
Evan Lloyd004c9a52015-12-03 11:35:40 +000018 BIN_EXT := .exe
19 PATH_SEP := ;
Evan Lloyda71d2592015-12-02 18:56:06 +000020
21 # For some Windows native commands there is a problem with the directory delimiter.
22 # Make uses / (slash) and the commands expect \ (backslash)
23 # We have to provide a means of translating these, so we define local functions.
24
25 # ${1} is the file to be copied.
26 # ${2} is the destination file name.
27 define SHELL_COPY
28 $(eval tmp_from_file:=$(subst /,\,${1}))
29 $(eval tmp_to_file:=$(subst /,\,${2}))
30 copy "${tmp_from_file}" "${tmp_to_file}"
31 endef
32
33 # ${1} is the directory to be copied.
34 # ${2} is the destination directory path.
35 define SHELL_COPY_TREE
36 $(eval tmp_from_dir:=$(subst /,\,${1}))
37 $(eval tmp_to_dir:=$(subst /,\,${2}))
38 xcopy /HIVE "${tmp_from_dir}" "${tmp_to_dir}"
39 endef
40
41 # ${1} is the file to be deleted.
42 define SHELL_DELETE
43 $(eval tmp_del_file:=$(subst /,\,${*}))
44 -@if exist $(tmp_del_file) del /Q $(tmp_del_file)
45 endef
46
47 # ${1} is a space delimited list of files to be deleted.
48 define SHELL_DELETE_ALL
49 $(eval $(foreach filename,$(wildcard ${1}),$(call DELETE_IF_THERE,${filename})))
50 endef
51
52 # ${1} is the directory to be generated.
53 # ${2} is optional, and allows prerequisites to be specified.
Evan Lloyd4c3055f2017-04-07 16:58:57 +010054 # Do nothing if $1 == $2, to ignore self dependencies.
Evan Lloyda71d2592015-12-02 18:56:06 +000055 define MAKE_PREREQ_DIR
Evan Lloyd4c3055f2017-04-07 16:58:57 +010056 ifneq (${1},${2})
Evan Lloyda71d2592015-12-02 18:56:06 +000057
58${1} : ${2}
59 $(eval tmp_dir:=$(subst /,\,${1}))
60 -@if not exist "$(tmp_dir)" mkdir "${tmp_dir}"
61
Evan Lloyd4c3055f2017-04-07 16:58:57 +010062 endif
Evan Lloyda71d2592015-12-02 18:56:06 +000063 endef
64
65 # ${1} is the directory to be removed.
66 define SHELL_REMOVE_DIR
67 $(eval tmp_dir:=$(subst /,\,${1}))
68 -@if exist "$(tmp_dir)" rd /Q /S "$(tmp_dir)"
69 endef
70
Chris Kayc8a47ba2023-10-20 09:17:33 +000071 nul := nul
72
73 which = $(shell where $(1) 2>$(nul))
Evan Lloyda71d2592015-12-02 18:56:06 +000074endif
75
Evan Lloydcf6e9d42015-12-03 12:58:52 +000076# Because git is not available from CMD.EXE, we need to avoid
77# the BUILD_STRING generation which uses git.
78# For now we use "development build".
79# This can be overridden from the command line or environment.
80BUILD_STRING ?= development build
81
82# The DOS echo shell command does not strip ' characters from the command
83# parameters before printing. We therefore use an alternative method invoked
84# by defining the MAKE_BUILD_STRINGS macro.
85BUILT_TIME_DATE_STRING = const char build_message[] = "Built : "${BUILD_MESSAGE_TIMESTAMP};
86VERSION_STRING_MESSAGE = const char version_string[] = "${VERSION_STRING}";
Harrison Mutai16b49ff2022-08-16 13:24:39 +010087VERSION_MESSAGE = const char version[] = "${VERSION}";
Evan Lloydcf6e9d42015-12-03 12:58:52 +000088define MAKE_BUILD_STRINGS
Harrison Mutai5b5a4752023-09-26 15:07:24 +010089 $$(file >$1.in,$$(TF_CFLAGS) $$(CFLAGS))
Harrison Mutaie999cb92022-08-23 16:44:39 +010090 @echo $$(BUILT_TIME_DATE_STRING) $$(VERSION_STRING_MESSAGE) $$(VERSION_MESSAGE) | \
Chris Kay523e8642023-12-04 12:03:51 +000091 $($(ARCH)-cc) @$1.in -x c -c - -o $1
Evan Lloydcf6e9d42015-12-03 12:58:52 +000092endef
93
Sami Mujaware7cdc3f2020-04-30 12:41:57 +010094MSVC_NMAKE := nmake.exe