gpt4 book ai didi

makefile - 如何通过测试文件是否存在来有条件地设置 Makefile 变量

转载 作者:行者123 更新时间:2023-12-03 06:00:16 29 4
gpt4 key购买 nike

例如:我想要:

如果文件1存在:

CLEAN_SRC = *.h file3

其他

CLEAN_SRC = 

最佳答案

如果 file1 不存在,则 $(wildcard file1) 将计算为空字符串。

ifeq ($(wildcard file1),) 
CLEAN_SRC =
else
CLEAN_SRC = *.h file3
endif

关于makefile - 如何通过测试文件是否存在来有条件地设置 Makefile 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1077676/

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