在 makefile 的条件中使用 shell 命令的结果

Use the result of a shell command in a conditional in a makefile

我正在尝试在 makefile 的条件中执行命令。

我让它在 shell 中工作:

if [ -z "$(ls -A mydir)" ]; then \
  echo "empty dir"; \
else \
  echo "non-empty dir"; \
fi

但是如果我在 makefile 中尝试它,无论 asdf 是否为空,"$(ls -A mydir)" 都会扩展为空:

all:
    if [ -z "$(ls -A mydir)" ]; then \
      echo "empty dir"; \
    else \
      echo "non-empty dir"; \
    fi

ls 命令没有像我预期的那样展开:

$ mkdir mydir
$ make
if [ -z "" ]; then \
      echo "empty dir"; \
    else \
      echo "non-empty dir"; \
    fi
empty dir
$ touch mydir/myfile
$ make
if [ -z "" ]; then \
      echo "empty dir"; \
    else \
      echo "non-empty dir"; \
    fi
empty dir
$ ls -A mydir
myfile

如何使命令在条件内起作用?

我写makefile的经验很少。但是我认为你必须在你的食谱中使用两个美元符号:

all:
    if [ -z "$$(ls -A mydir)" ]; then \

https://www.gnu.org/software/make/manual/make.html#Variables-in-Recipes:

if you want a dollar sign to appear in your recipe, you must double it (‘$$’).

这是我更改您的 makefile 并添加 $$(ls -A mydir):

后的输出示例
$ ls mydir/
1

$ make
if [ -z "$(ls -A mydir)" ]; then \
      echo "empty dir"; \
    else \
      echo "non-empty dir"; \
    fi
non-empty dir

$ rm mydir/1

$ make
if [ -z "$(ls -A mydir)" ]; then \
      echo "empty dir"; \
    else \
      echo "non-empty dir"; \
    fi
empty dir