| # Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. |
| # SPDX-License-Identifier: BSD-3-Clause |
| # Trusted Firmware shell command definitions for a Unix style environment. |
| UNIX_MK := $(lastword $(MAKEFILE_LIST)) |
| # These defines provide Unix style equivalents of the shell commands |
| # required by the Trusted Firmware build environment. |
| # ${1} is the file to be copied. |
| # ${2} is the destination file name. |
| # ${1} is the directory to be copied. |
| # ${2} is the destination directory path. |
| # ${1} is the file to be deleted. |
| # ${1} is a space delimited list of files to be deleted. |
| # Note that we do not quote ${1}, as multiple parameters may be passed. |
| # ${1} is the directory to be generated. |
| # ${2} is optional, and allows a prerequisite to be specified. |
| # Do nothing if $1 == $2, to ignore self dependencies. |