Answers:
是的,您可以使用define关键字声明多行变量,如下所示:
define ANNOUNCE_BODY
Version $(VERSION) of $(PACKAGE_NAME) has been released.
It can be downloaded from $(DOWNLOAD_URL).
etc, etc.
endef
棘手的部分是将多行变量从makefile中取出。如果您只是使用“ echo $(ANNOUNCE_BODY)”做显而易见的事情,您将看到其他人在此处发布的结果-shell尝试将变量的第二行和后续行作为命令本身处理。
但是,您可以将变量值按原样作为环境变量导出到Shell,然后从Shell作为环境变量引用它(而不是make变量)。例如:
export ANNOUNCE_BODY
all:
@echo "$$ANNOUNCE_BODY"
请注意,使用$$ANNOUNCE_BODY
指示外壳环境变量引用,而不是$(ANNOUNCE_BODY)
,这将是常规的make变量引用。另外,请确保在变量引用周围使用引号,以确保换行符不会被外壳程序本身解释。
当然,此技巧可能对平台和外壳敏感。我在Ubuntu Linux上使用GNU bash 3.2.13对其进行了测试;YMMV。
ANNOUNCE_BODY
在其他变量定义中使用值,则只需像其他make变量一样引用它即可。例如,OTHER=The variable ANNOUNCE_BODY is $(ANNOUNCE_BODY)
。当然,export
如果您想OTHER
退出命令,仍然需要技巧。
另一种“使多行变量从makefile中退回”的方法(被Eric Melski称为“棘手的部分”)是计划使用subst
函数用替换define
多行字符串中引入的换行符\n
。然后使用-e with echo
来解释它们。您可能需要设置.SHELL = bash以获得执行此操作的回显。
这种方法的优点是,您还可以将其他此类转义字符放入文本中并让它们受到尊重。
这种综合了到目前为止提到的所有方法。
您结束时:
define newline
endef
define ANNOUNCE_BODY=
As of $(shell date), version $(VERSION) of $(PACKAGE_NAME) has been released.
It can be downloaded from $(DOWNLOAD_URL).
endef
someTarget:
echo -e '$(subst $(newline),\n,${ANNOUNCE_BODY})'
请注意,最终回声上的单引号至关重要。
=
after define ANNOUNCE_BODY
才能运行它。
假设您只想在标准输出上打印变量的内容,还有另一种解决方案:
do-echo:
$(info $(YOUR_MULTILINE_VAR))
make: 'do-echo' is up to date.
。通过使用“ no op”命令,我可以使其静音:@: $(info $(YOUR_MULTILINE_VAR))
.PHONY
用来告诉Makefile没有什么可以检查该规则的。Makefile最初是供编译器使用的,如果我没记错的话,make
它也在做一些我不理解的魔术,以期望该规则不会改变任何东西,因此假定它已经完成。.PHONY do-echo
在您的文件中添加将告诉make
您忽略它并继续运行代码。
$(info ...)
在make rule之外。它将仍然生成输出。
是。您可以使用以下命令换行\
:
VARIABLE="\
THIS IS A VERY LONG\
TEXT STRING IN A MAKE VARIABLE"
啊,你要换行吗?那不,我不认为Vanilla Make有任何办法。但是,您始终可以在命令部分中使用此处文档
[这不起作用,请参阅MadScientist的评论]
foo:
echo <<EOF
Here is a multiple line text
with embedded newlines.
EOF
这没有给出here文档,但是它确实以适合管道的方式显示多行消息。
=====
MSG = this is a\\n\
multi-line\\n\
message
method1:
@$(SHELL) -c "echo '$(MSG)'" | sed -e 's/^ //'
=====
您还可以使用Gnu的可调用宏:
=====
MSG = this is a\\n\
multi-line\\n\
message
method1:
@echo "Method 1:"
@$(SHELL) -c "echo '$(MSG)'" | sed -e 's/^ //'
@echo "---"
SHOW = $(SHELL) -c "echo '$1'" | sed -e 's/^ //'
method2:
@echo "Method 2:"
@$(call SHOW,$(MSG))
@echo "---"
=====
这是输出:
=====
$ make method1 method2
Method 1:
this is a
multi-line
message
---
Method 2:
this is a
multi-line
message
---
$
=====
为什么不使用字符串中的\ n字符来定义行尾?还要添加多余的反斜杠以将其添加到多行中。
ANNOUNCE_BODY=" \n\
Version $(VERSION) of $(PACKAGE_NAME) has been released \n\
\n\
It can be downloaded from $(DOWNLOAD_URL) \n\
\n\
etc, etc"
$(subst \n ,\n,$(TEXT))
尽管我希望有更好的方法,但我还是把文字通了!
您应该使用“ define / endef” Make结构:
define ANNOUNCE_BODY
Version $(VERSION) of $(PACKAGE_NAME) has been released.
It can be downloaded from $(DOWNLOAD_URL).
etc, etc.
endef
然后,您应该将此变量的值传递给shell命令。但是,如果使用Make变量替换执行此操作,则会导致命令拆分为多个:
ANNOUNCE.txt:
echo $(ANNOUNCE_BODY) > $@ # doesn't work
Qouting也无济于事。
传递值的最佳方法是通过环境变量传递值:
ANNOUNCE.txt: export ANNOUNCE_BODY:=$(ANNOUNCE_BODY)
ANNOUNCE.txt:
echo "$${ANNOUNCE_BODY}" > $@
注意:
本着.ONESHELL的精神,在.ONESHELL面临挑战的环境中可能会变得非常接近:
define _oneshell_newline_
endef
define oneshell
@eval "$$(printf '%s\n' '$(strip \
$(subst $(_oneshell_newline_),\n, \
$(subst \,\/, \
$(subst /,//, \
$(subst ','"'"',$(1))))))' | \
sed -e 's,\\n,\n,g' -e 's,\\/,\\,g' -e 's,//,/,g')"
endef
使用示例如下所示:
define TEST
printf '>\n%s\n' "Hello
World\n/$$$$/"
endef
all:
$(call oneshell,$(TEST))
显示输出(假设pid 27801):
>
Hello
World\n/27801/
这种方法确实允许一些额外的功能:
define oneshell
@eval "set -eux ; $$(printf '%s\n' '$(strip \
$(subst $(_oneshell_newline_),\n, \
$(subst \,\/, \
$(subst /,//, \
$(subst ','"'"',$(1))))))' | \
sed -e 's,\\n,\n,g' -e 's,\\/,\\,g' -e 's,//,/,g')"
endef
这些shell选项将:
其他有趣的可能性可能会提示自己。
我最喜欢alhadis的答案。但是要保持列格式,请再添加一件事。
SYNOPSIS := :: Synopsis: Makefile\
| ::\
| :: Usage:\
| :: make .......... : generates this message\
| :: make synopsis . : generates this message\
| :: make clean .... : eliminate unwanted intermediates and targets\
| :: make all ...... : compile entire system from ground-up\
endef
输出:
:: Synopsis: Makefile
::
:: Usage:
:: make .......... : generates this message
:: make synopsis . : generates this message
:: make clean .... : eliminate unwanted intermediates and targets
:: make all ...... : compile entire system from ground-up
与OP并不完全相关,但是希望这会在将来对某人有所帮助。(因为这个问题是Google搜索中最多的问题)。
在我的Makefile中,我想将文件的内容传递给docker build命令,在大为震惊之后,我决定:
base64 encode the contents in the Makefile (so that I could have a single line and pass them as a docker build arg...)
base64 decode the contents in the Dockerfile (and write them to a file)
请参见下面的示例。
nb:在我的特殊情况下,我想使用在https://vsupalov.com/build-docker-image-clone-private-repo-ssh-key/中的示例在映像构建期间传递ssh密钥(使用一个多阶段docker构建以克隆git repo,然后在构建的第二阶段从最终映像中删除ssh密钥)
...
MY_VAR_ENCODED=$(shell cat /path/to/my/file | base64)
my-build:
@docker build \
--build-arg MY_VAR_ENCODED="$(MY_VAR_ENCODED)" \
--no-cache \
-t my-docker:build .
...
...
ARG MY_VAR_ENCODED
RUN mkdir /root/.ssh/ && \
echo "${MY_VAR_ENCODED}" | base64 -d > /path/to/my/file/in/container
...
在GNU Make 3.82及更高版本中,.ONESHELL
当涉及多行外壳片段时,该选项是您的朋友。将其他答案的提示放在一起,我得到:
VERSION = 1.2.3
PACKAGE_NAME = foo-bar
DOWNLOAD_URL = $(PACKAGE_NAME).somewhere.net
define nwln
endef
define ANNOUNCE_BODY
Version $(VERSION) of $(PACKAGE_NAME) has been released.
It can be downloaded from $(DOWNLOAD_URL).
etc, etc.
endef
.ONESHELL:
# mind the *leading* <tab> character
version:
@printf "$(subst $(nwln),\n,$(ANNOUNCE_BODY))"
将上面的示例复制并粘贴到编辑器中时,请确保<tab>
保留所有字符,否则version
目标将被破坏!
请注意,这.ONESHELL
将导致Makefile中的所有目标对其所有命令使用单个shell。
make version printf "Version 1.2.3 of foo-bar has been released. /bin/sh: 1: Syntax error: Unterminated quoted string make: *** [version] Error 2
(GNU make
@printf ...
语句前面是否有领先的TAB字符(而不是空格)-看起来TAB始终显示为4个空格...
.ONESHELL
是3.82版中的新功能。
*** missing separator. Stop.
。
并不是真正有用的答案,而只是表明'define'不能像Axe那样起作用(不适合在注释中):
VERSION=4.3.1
PACKAGE_NAME=foobar
DOWNLOAD_URL=www.foobar.com
define ANNOUNCE_BODY
Version $(VERSION) of $(PACKAGE_NAME) has been released
It can be downloaded from $(DOWNLOAD_URL)
etc, etc
endef
all:
@echo $(ANNOUNCE_BODY)
它给出了一个错误消息,即找不到命令“ It”,因此它尝试将ANNOUNCE BODY的第二行解释为命令。
GNU Makefile可以执行以下操作。这很丑陋,我不会说您应该这样做,但在某些情况下我会这样做。
PROFILE = \
\#!/bin/sh.exe\n\
\#\n\
\# A MinGW equivalent for .bash_profile on Linux. In MinGW/MSYS, the file\n\
\# is actually named .profile, not .bash_profile.\n\
\#\n\
\# Get the aliases and functions\n\
\#\n\
if [ -f \$${HOME}/.bashrc ]\n\
then\n\
. \$${HOME}/.bashrc\n\
fi\n\
\n\
export CVS_RSH="ssh"\n
#
.profile:
echo -e "$(PROFILE)" | sed -e 's/^[ ]//' >.profile
make .profile
如果不存在,则创建一个.profile文件。
在应用程序仅在POSIX shell环境中使用GNU Makefile的情况下使用此解决方案。该项目不是一个开源项目,平台兼容性是一个问题。
目的是创建一个Makefile,该文件可促进特定类型工作区的设置和使用。Makefile附带了各种简单的资源,而无需诸如其他特殊档案之类的东西。从某种意义上说,它是一个shell档案。然后,一个过程可以说诸如将Makefile放到文件夹中进行操作。make workspace
,然后做make blah
,等等。
可能会棘手的是弄清楚要引用的内容。上面的工作可以完成,并且与在Makefile中指定一个here文档的想法很接近。对于一般用途而言,这是否是一个好主意还完全是另外一个问题。
使用字符串替换:
VERSION := 1.1.1
PACKAGE_NAME := Foo Bar
DOWNLOAD_URL := https://go.get/some/thing.tar.gz
ANNOUNCE_BODY := Version $(VERSION) of $(PACKAGE_NAME) has been released. \
| \
| It can be downloaded from $(DOWNLOAD_URL) \
| \
| etc, etc
然后在你的食谱,放
@echo $(subst | ,$$'\n',$(ANNOUNCE_BODY))
之所以可行,是因为Make会替换所有出现的|
(请注意空格)并将其替换为换行符($$'\n'
)。您可以将等效的shell脚本调用看作是这样的:
之前:
$ echo "Version 1.1.1 of Foo Bar has been released. | | It can be downloaded from https://go.get/some/thing.tar.gz | | etc, etc"
后:
$ echo "Version 1.1.1 of Foo Bar has been released.
>
> It can be downloaded from https://go.get/some/thing.tar.gz
>
> etc, etc"
我不确定 $'\n'
在非POSIX系统上是否可用,但是如果您可以访问单个换行符(即使通过从外部文件读取字符串),则基本原理相同。
如果您有许多这样的消息,则可以使用宏来减少噪音:
print = $(subst | ,$$'\n',$(1))
像这样调用它的位置:
@$(call print,$(ANNOUNCE_BODY))
希望这对某人有帮助。=)
或者,您可以使用printf命令。这在OSX或功能较少的其他平台上很有用。
要简单地输出多行消息:
all:
@printf '%s\n' \
'Version $(VERSION) has been released' \
'' \
'You can download from URL $(URL)'
如果您尝试将字符串作为arg传递给另一个程序,则可以这样进行:
all:
/some/command "`printf '%s\n' 'Version $(VERSION) has been released' '' 'You can download from URL $(URL)'`"
export ANNOUNCE_BODY
仅在规则内设置变量-不允许引用$$ ANNOUNCE_BODY来定义其他变量。