Makefile 文件格式;makefile伪目标

Posted xuyaowen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Makefile 文件格式;makefile伪目标相关的知识,希望对你有一定的参考价值。

Makefile包含 目标文件、依赖文件、可运行命令三部分。 

每部分的基本格式例如以下:

test: prog.o  code.o 

        gcc  -o  test   prog.o   code.o

当中,第一行的test是目标文件。 prog.o、code.o是依赖文件

           第二行的gcc -o test prog.o code.o是可运行命令

整个Makefile文件都是这样的格式。

参考链接:

https://blog.csdn.net/haoel/article/details/2886 

Makefile 伪目标:

https://www.cnblogs.com/hnrainll/archive/2011/04/12/2014082.html 

https://blog.csdn.net/tanqiuwei/article/details/25381643 

以上是关于Makefile 文件格式;makefile伪目标的主要内容,如果未能解决你的问题,请参考以下文章

makefile学习之路——伪目标

第3课 - makefile伪目标的引入

makefile 伪目标

Makefile文件的基本单元 —— 规则

Makefile伪目标

linux之Makefile 编写规则伪目标