最简单的makefile

简介: 最简单的makefile


hello.c的内容如下:

#include <stdio.h>
int main()
{
    printf("Hello World!\n");
    return 0;
}

makefile 的内容如下:

hello.exe : hello.o
    gcc -o hello.exe hello.o
hello.o : hello.c   
    gcc -c hello.c

makefile 的内容如下:

hello.exe : hello.o
    gcc -o hello.exe hello.o
hello.o : hello.c   
    gcc -c hello.c

clean :  

   rm hello.o hello.exe

Windows命令行(cmd.exe)下,先进入makefile 所在目录,执行 make 命令。


就会生成hello.exe了。


注意:

1, makefile 文件没有扩展名。

2, 第二、第四行、第六行前必须有一个tab

相关文章
|
8月前
|
IDE Shell Linux
013.Makefile
Makefiel 编写 我们之前其实已经写过一些makefile了,只是没有具体介绍,本篇博客就详细的介绍一下Makefile。
65 0
|
Shell Linux Go
一日一技:5分钟掌握 Makefile
一日一技:5分钟掌握 Makefile
180 0