码迷,mamicode.com
首页 > 其他好文 > 详细

最简单的makefile

时间:2015-06-16 19:15:19      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:


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
clean :  
    rm hello.o hello.exe
Windows命令行(cmd.exe)下,先进入makefile 所在目录,执行 make 命令。

就会生成hello.exe了。

注意:
1, makefile 文件没有扩展名。
2, 第二、第四行、第六行前必须有一个tab

最简单的makefile

标签:

原文地址:http://blog.csdn.net/he_zhidan/article/details/46521563

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!