Makefile自定义函数 / pushd,popd / ifneq / findstring / camke内置变量
①Makefile自定义函数1.自定义函数编写自定义函数一般上是命令的集合definefunc1@echo"funcnameis$(0)\n"@echo"thefirstparamis$(1)"endef通过define定义函数$(0)是函数名,$(1)是第一个变量2.函数调用预定义的call函数在调用时将参数传递给多行变量自定义函数是call函数的实参,并在call中被执行$(callfunc1