赞
踩
# 如果a和b不相等,则do something
ifneq ($(a), $(b))
# do something
endif
sources := a b c d f g
# 指定的模式为 a b c ,多个模式间,用空格区分
$(filter a b c , $(sources))
# 上式返回值为
# a b c
# 如果 TARGET 为A 或 B(即不为空),那么加入某些特殊参数
# 这里ifneq第二个参数为NULL
ifneq ($(filter A B , $(TARGET)),)
#某些特殊参数
endif
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。