编写简单的Makefile文件

Posted 茶飘香~

tags:

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

 

makefile中的编写内容如下:

www:hello.c x.h
        gcc hello.c -o hello
clean:
        rm hello

  www:hello.c  x.h 表示生成www这个文件需要hello.c 和 x.h这两个文件

     rm hello 表示在shell中执行make clean 时会执行rm  hello 即删除hello这个文件

以上是关于编写简单的Makefile文件的主要内容,如果未能解决你的问题,请参考以下文章

Linux下makefile文件的编写问题!

Makefile的简单编写

编写简单的Makefile文件

如何编写makefile

1编写一个简单Makefile模板

makefile怎么写