ifndef 变量在定义变量时触发

时间:2021-02-02 04:09:44

标签: makefile gnu-make

为什么,当我运行 make run-e2e-docker 时 ifndef 被激活?变量应该被设置,但 make 确定它不是。它可用于运行的 echo 命令。如果我删除 ifndef,然后运行 ​​make 它会打印变量。

run-e2e:
ifndef environment
$(error "You can't run run-e2e directly, choose one of the run-e2e-* tasks ${environment}")
endif
    @echo extra_profiles=${extra_profiles}
    @echo environment=${environment}

run-e2e-docker: override extra_profiles = docker-e2e,dev-performance
run-e2e-docker: override environment = docker
run-e2e-docker: run-e2e

1 个答案:

答案 0 :(得分:1)

您不能在上下文中使用 make 条件。当您显然在思考时,不会对它们进行评估。但是您可以改用 shell 条件:

run-e2e:
    @if [ -z "$(environment)" ]; then \
        echo "You can't run run-e2e directly, choose one of the run-e2e-* tasks"; \
        exit 1; \
    fi
    @echo extra_profiles=${extra_profiles}
    @echo environment=${environment}

GNU Make 手册说...

<块引用>

条件控制 make 在 makefile 中实际“看到”的内容,因此 它们不能用于在执行时控制配方。

https://www.gnu.org/software/make/manual/html_node/Conditionals.html