makefile filter &&filter-out

    sources := foo.c bar.c baz.s abc.h
    foo: $(sources)
            gcc $(filter %.c %.s,$(sources)) -o foo

says that foo depends of foo.c、bar.c、baz.s and ugh.h but only foo.c、bar.c and baz.s should be specified in the command to the compiler.
过滤出.c和.s 参加编译。

    objects := main1.o foo.o main2.o bar.o
    mains   := main1.o main2.o

the following generates a list which contains all the object files not in ‘mains’:

$(filter-out $(mains),$(objects))
实现了去除变量“objects”中“mains”定义的字串(文件名)功能。它的返回值为“foo.o bar.o”。

原文链接: https://www.cnblogs.com/yuguangyuan/p/10929967.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    makefile filter &&filter-out

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/397691

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年4月11日 上午9:42
下一篇 2023年4月11日 上午9:42

相关推荐