首页 > 其他 > 详细

makefile filter &&filter-out

时间:2019-05-27 13:01:08      阅读:129      评论:0      收藏:0      [点我收藏+]


    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”。

makefile filter &&filter-out

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!