blob: 2f5d51bf1af658e08d8ea1cf69fa64f370bd49c4 [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
Evan Lloyda71d2592015-12-02 18:56:06 +000015 DIR_DELIM := $(strip \)
Evan Lloyd004c9a52015-12-03 11:35:40 +000016 BIN_EXT := .exe
17 PATH_SEP := ;
Evan Lloyda71d2592015-12-02 18:56:06 +000018
19 # For some Windows native commands there is a problem with the directory delimiter.
20 # Make uses / (slash) and the commands expect \ (backslash)
21 # We have to provide a means of translating these, so we define local functions.
22
23 # ${1} is the file to be copied.
24 # ${2} is the destination file name.
25 define SHELL_COPY
26 $(eval tmp_from_file:=$(subst /,\,${1}))
27 $(eval tmp_to_file:=$(subst /,\,${2}))
28 copy "${tmp_from_file}" "${tmp_to_file}"
29 endef
30
31 # ${1} is the directory to be copied.
32 # ${2} is the destination directory path.
33 define SHELL_COPY_TREE
34 $(eval tmp_from_dir:=$(subst /,\,${1}))
35 $(eval tmp_to_dir:=$(subst /,\,${2}))
36 xcopy /HIVE "${tmp_from_dir}" "${tmp_to_dir}"
37 endef
38
39 # ${1} is the file to be deleted.
40 define SHELL_DELETE
41 $(eval tmp_del_file:=$(subst /,\,${*}))
42 -@if exist $(tmp_del_file) del /Q $(tmp_del_file)
43 endef
44
45 # ${1} is a space delimited list of files to be deleted.
46 define SHELL_DELETE_ALL
47 $(eval $(foreach filename,$(wildcard ${1}),$(call DELETE_IF_THERE,${filename})))
48 endef
49
50 # ${1} is the directory to be generated.
51 # ${2} is optional, and allows prerequisites to be specified.
Evan Lloyd4c3055f2017-04-07 16:58:57 +010052 # Do nothing if $1 == $2, to ignore self dependencies.
Evan Lloyda71d2592015-12-02 18:56:06 +000053 define MAKE_PREREQ_DIR
Evan Lloyd4c3055f2017-04-07 16:58:57 +010054 ifneq (${1},${2})
Evan Lloyda71d2592015-12-02 18:56:06 +000055
56${1} : ${2}
57 $(eval tmp_dir:=$(subst /,\,${1}))
58 -@if not exist "$(tmp_dir)" mkdir "${tmp_dir}"
59
Evan Lloyd4c3055f2017-04-07 16:58:57 +010060 endif
Evan Lloyda71d2592015-12-02 18:56:06 +000061 endef
62
63 # ${1} is the directory to be removed.
64 define SHELL_REMOVE_DIR
65 $(eval tmp_dir:=$(subst /,\,${1}))
66 -@if exist "$(tmp_dir)" rd /Q /S "$(tmp_dir)"
67 endef
68
Chris Kayc8a47ba2023-10-20 09:17:33 +000069 nul := nul
70
Chris Kay2c09bf62024-04-09 16:30:52 +000071 which = $(shell where "$(1)" 2>$(nul))
Evan Lloyda71d2592015-12-02 18:56:06 +000072endif
73
Evan Lloydcf6e9d42015-12-03 12:58:52 +000074# Because git is not available from CMD.EXE, we need to avoid
75# the BUILD_STRING generation which uses git.
76# For now we use "development build".
77# This can be overridden from the command line or environment.
78BUILD_STRING ?= development build
79
Sami Mujaware7cdc3f2020-04-30 12:41:57 +010080MSVC_NMAKE := nmake.exe