有谁知道如何在食谱上使用here-document重定向?
test:
  sh <<EOF
  echo I Need This
  echo To Work
  ls
  EOF
我找不到任何解决方案尝试通常的反斜杠方法(基本上以一行中的命令结束).
理由:
我有一组多行配方,我想通过另一个命令代理(例如,sh,docker).
onelinerecipe := echo l1
define twolinerecipe :=
echo l1
echo l2
endef
define threelinerecipe :=
echo l1
echo l2
echo l3
endef
# sh as proxy command and proof of concept
proxy := sh
test1:
  $(proxy) <<EOF
  $(onelinerecipe)
  EOF
test2:
  $(proxy) <<EOF
  $(twolinerecipe)
  EOF
test3:
  $(proxy) <<EOF
  $(threelinerecipe)
  EOF
我希望避免的解决方案:将多行宏转换为单行.
define threelinerecipe :=
echo l1;
echo l2;
echo l3
endef
test3:
  $(proxy) <<< "$(strip …