gpt4 book ai didi

makefile - 在 Makefile 中执行大于小于计算

转载 作者:行者123 更新时间:2023-12-04 00:08:19 25 4
gpt4 key购买 nike

我正在尝试在 Makefile 中执行此操作:

value = 2.0

if ${greaterthan ${value}, 1.50}
-> execute a rule
elseif ${lessthan ${value}, 0.50}
-> execute a rule
endif

想要做的事情似乎很常见。这样做的最佳方法是什么?

最佳答案

尝试这个

在此示例中,检查 VER 是否大于 4

ifeq ($(shell test $(VER) -gt 4; echo $$?),0)
IFLAGS += -I$(TOPDIR)/include
LIBS += -L$(TOPDIR)/libs -lpcap
endif

关于makefile - 在 Makefile 中执行大于小于计算,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3442304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com