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. 用python做线性规划

    scipy.optimize.linprog(c, A_ub=None, b_ub=None, A_eq=None, b_eq=None, bounds=None, method='simplex', ...

  2. React Native常用第三方汇总

    React Native 项目常用第三方组件汇总:  react-native-animatable 动画 react-navigation github : https://reactnavigat ...

  3. 网卡做bond 导致丢包

    值班中发现一台服务器报到网关丢包,带宽200M. 用  ethtool bond0 查看网卡带宽信息,发现 Speed 为 3100M ,非 1000 的整数倍或10000的整数倍,感觉不对,因为是做 ...

  4. mybatis resultMap 子元素

    resultMap constructor - 类在实例化时,用来注入结果到构造方法中 idArg - ID 参数;标记结果作为 ID 可以帮助提高整体效能 arg - 注入到构造方法的一个普通结果 ...

  5. C学习笔记-字符串处理函数

    字符串函数是最问常用的库函数之一,本文整理了常用的字符串函数,其来源为互联网 函数名: stpcpy 功 能: 拷贝一个字符串到另一个 用 法: char *stpcpy(char *destin, ...

  6. linux系统下安装python3及其配置

    Linux下安装Python3.6和第三方库 linux一般自带python2,不要动它,使用python3运行python脚本就好,部分linux系统命令依赖目前的python2环境, 比如yum! ...

  7. git 命令 git status add rm commit mv

    1.查看 git 仓库文件改动状态 Git 仓库内文件改动有 4 种状态,除了 Unmodified 状态的文件因为并未改动默认没有状态不做显示之外,其他文件改动状态都可以通过 git status ...

  8. 记:SpringBoot项目莫名出现ClassNotFoundException

    最近某个开发环境的某个应用,隔三差五出现了某某页面找不到,网上百度找了些同类的问题都是说jstl包与默认tomcat里的包冲突,但都感觉和我的问题不是很搭配(因为相同框架的其他项目都可以正常允许) 报 ...

  9. SQLite进阶-10.约束

    约束 约束是作用于数据表中列上的规则,用于限制表中数据的类型.约束的存在保证了数据库中数据的精确性和可靠性. 约束可以是列级或表级,列级约束作用于单一的列,而表级约束作用于整张数据表. SQLite中 ...

  10. Treasure Island(两遍dfs)-- Codeforces Round #583 (Div. 1 + Div. 2, based on Olympiad of Metropolises)

    题意:https://codeforc.es/contest/1214/problem/D 给你一个n*m的图,每次可以往右或者往下走,问你使(1,1)不能到(n,m)最少要放多少 ‘ # ’ . 思 ...