GNU make支持内置函数以及用户自定义函数,下面结合例子简单介绍一下。

gnu make版本: 4.1

一、用户自定义函数

格式: $(call macro-name{, param1 ···})

解析: macro-name可以是任意宏或变量,macro-name之后是宏的参数,并以逗号为分隔符。

例子:

 define test-call
echo "call has two parameters: $1, $2"
endef .PTHONY: simple-test
simple-test:
@$(call test-call,one,two)

运行结果:

  make simple-test

  call has two parameters: one, two

二、内置函数

字符串函数

1、filter

格式: $(filter pattern ···text)

解析: filter函数会将text视为一系列被空格隔开的单词,与pattern比较之后接着会返回相符者。

例子:

words :=  GNU is not unix and linux is not unix

.PTHONY: simple-test
simple-test:
@echo words: $(words)
@echo unix matches: $(filter unix, $(words))

运行结果:

  make simple-test

  words: GNU is not unix and linux is not unix
  unix matches: unix unix

2、filter-out

格式: $(filter-out patern...,text)

解析:这个函数功能与filter刚好相反

例子:

words :=  GNU is not unix and linux is not unix

.PTHONY: simple-test
simple-test:
@echo words: $(words)
@echo unix matches: $(filter-out unix, $(words))

运行结果:

  make simple-test

  words: GNU is not unix and linux is not unix

  unix matches: GNU is not and linux is not

3、findstring

格式: $(findstring string...,text)

解析: 此函数将会在text里面搜索string。如果该字符被找到了,此函数就会返回string,否则,它会返回空值。

例子:

words :=  GNU is not unix and linux is not unix

.PTHONY: simple-test
simple-test:
@echo words: $(words)
@echo unix matches: $(findstring unix, $(words))

运行结果:

  make simple-test
  words: GNU is not unix and linux is not unix
  unix matches: unix

4、subst

格式: $(subst search-string,replace-string, text)

解析:这是一个不具通配符能力的”搜索和替换“函数。它最常被用来在文件名列表将一个扩展名替换成另一个扩展名

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(subst .c,.o,$(sourcelist))

运行结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: GNU.o is.o not.o unix.o and.o linux.o is.o not.o unix.o

这可以将在soucelist里面所有出现.c字样的地方都替换成.o。

5、pathsubst

格式: $(pathsubst search-pattern,replace-pattern,text)

解析: 这是一个具有通配符能力的”搜索和替换“函数。

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(patsubst %nix.c, UNIX,$(sourcelist))

运行结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: GNU.c is.c not.c UNIX and.c linux.c is.c not.c UNIX

6、words

格式: $(words text)

解析:此函数会返回text中单词的数量

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(words $(sourcelist))

运行结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: 9

7、words后面带n

格式:$(words n,text)

解析: 此函数会返回text中的第n个单词,第一个单词的编号为1。如果n的值大于text中单词的个数,则此函数将会返回空值。

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(words ,$(sourcelist))

测试结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: 9

没有返回预想的值,好奇怪。

8、firstword

格式: $(firstword text)

解析: 此函数会返回text中的第一个单词。

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(firstword $(sourcelist))

运行结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: GNU.c

9、wordlist

格式: $(wordlist start,end,text)

解析: 此函数会返回text中范围从start(含)到end(含)的单词。

例子:

sourcelist :=  GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c

.PTHONY: simple-test
simple-test:
@echo sourcelist: $(sourcelist)
@echo unix matches: $(wordlist ,,$(sourcelist))

运行结果:

  make simple-test
  sourcelist: GNU.c is.c not.c unix.c and.c linux.c is.c not.c unix.c
  unix matches: GNU.c is.c not.c

时间关系,先介绍到这。

makefile学习之函数的更多相关文章

  1. [转]Windows平台下Makefile学习笔记

    Windows平台下Makefile学习笔记(一) 作者:朱金灿 来源:http://blog.csdn.net/clever101 决心学习Makefile,一方面是为了解决编译开源代码时需要跨编译 ...

  2. makefile学习(1)

    GNU Make / Makefile 学习资料 GNU Make学习总结(一) GNU Make学习总结(二) 这篇学习总结,从一个简单的小例子开始,逐步加深,来讲解Makefile的用法. 最后用 ...

  3. JavaScript学习09 函数本质及Function对象深入探索

    JavaScript学习09 函数本质及Function对象深入探索 在JavaScript中,函数function就是对象. JS中没有方法重载 在JavaScript中,没有方法(函数)重载的概念 ...

  4. makefile学习小结

    =============2016/08/15================ 上午完成makefile的试验,缩短了代码量,现在make强大,有缺省的变量,能自己推导关系,不需要gcc –MM -M ...

  5. Linux makefile教程之函数七[转]

    使用函数 ———— 在Makefile中可以使用函数来处理变量,从而让我们的命令或是规则更为的灵活和具有智能.make所支持的函数也不算很多,不过已经足够我们的操作了.函数调用后,函数的返回值可以当做 ...

  6. C++学习之函数指针

     C++学习之函数指针          和数据项类似,函数也有地址,函数的地址是存储在机器语言代码的内存的开始地址.通常,这些地址对用户而言,不重要也没什么用处,但对程序而言,它却很有用. 一.函数 ...

  7. Javascript学习5 - 函数

    原文:Javascript学习5 - 函数 在Javascript中,函数和对象是交织在一起的.有些函数的特性与对象相关联.这一点的内容在第六部分会讨论到. 这一部分主要讨论函数与其它比较熟悉的语言( ...

  8. linux makefile字符串操作函数 替换subst、模式替换patsubst、去首尾空格strip、查找字符串findstring、过滤filter、反过滤filter-out、排序函数sort、取单词word、取单词串wordlist、个数统计words

    1.1       字符操作函数使用 在Makefile中可以使用函数来处理变量,从而让我们的命令或是规则更为的灵活和具有智能.make所支持的函数也不算很多,不过已经足够我们的操作了.函数调用后,函 ...

  9. [arm学习]makefile学习总结

    makefile不仅仅是一个命令的集合体,其中有一些规则是需要理解掌握的. 首先,了解makefile的规则: //-----------格式---------- 目标 : 依赖1,依赖2 (TAP键 ...

随机推荐

  1. spring boot系列(七)spring boot 使用mongodb

    1 pom.xml配置 增加包依赖:spring-boot-starter-data-mongodb <dependency> <groupId>org.springframe ...

  2. Redis 集群部署

    一.下载所需软件包 redis wget http://download.redis.io/releases/redis-4.0.6.tar.gz ruby wget https://cache.ru ...

  3. DS18b20温度传感器基础使用

    认识管脚 认识唯一标示的64位地址序列号 寄存器数据译码成温度值(下面只针对12位转化的,还有9..10等其他位的转化方式,不同位的转化,其精度也不同) 传感器存储器 配置寄存器使用说明 DS18b2 ...

  4. 【笔记】Docker入门

    这个文章讲的比较透彻,就不复制粘贴了 <Docker从入门到实践>阅读笔记 Docker安装 环境 root@fudonghai:~# uname -a Linux fudonghai - ...

  5. 资深技术Leader曹乐:如何成为技术大牛

    From: https://mp.weixin.qq.com/s/QaBTm_9AJC01Isr3LLR3aw 原创: 曹乐 公众号: 再成长一次 看了下面这篇文章的话,应该会有收获. 虽然排版不好, ...

  6. cocos2dx-android-添加64位编译

    Application.mk: APP_ABI := armeabi arm64-v8a build.gradle: android{ ndk{ abiFilters "armeabi&qu ...

  7. 解决windows server 2019远程桌面许可证问题

    解决远程桌面许可证问题,你的远程桌面许可证出现问题,你的会话将在60分钟后断开. 最近装了台windows server 2019服务器做远程桌面连接,也安装了远程桌面许可证,但客户端远程连接时出现你 ...

  8. Web工作方式

    我们平时浏览网页的时候,会打开浏览器,输入网址后按下回车键,然后就会显示出你想要浏览的内容.在这个看似简单的用户行为背后,到底隐藏了些什么呢? 对于普通的上网过程,系统其实是这样做的:浏览器本身是一个 ...

  9. sha256算法原理

    1. SHA256简介 SHA256是SHA-2下细分出的一种算法 SHA-2下又可再分为六个不同的算法标准 包括了:SHA-224.SHA-256.SHA-384.SHA-512.SHA-512/2 ...

  10. kube-metric在kubernetes上的部署

    1.拿包 wgethttps://github.com/kubernetes/kube-state-metrics/archive/v1.7.2.tar.gz 2.tar -zxf  v1.7.2.t ...