Makefile的学习
【摘要】 1 Makefile
就这样理解,帮我们对程序进行编译,我们每次gcc g++啥的很麻烦
2 举例子
我这里有3个文件first.c second.c third.c
first.c文件如下
#include <stdio.h>int...
1 Makefile
就这样理解,帮我们对程序进行编译,我们每次gcc g++啥的很麻烦
2 举例子
我这里有3个文件first.c second.c third.c
first.c文件如下
-
#include <stdio.h>
-
int add(int a, int b)
-
{
-
return a;
-
}
second.c文件如下
-
int sub(int a, int b)
-
{
-
return a - b;
-
}
third.c文件如下
-
int main()
-
{
-
int sum = add(1, 2);
-
printf("sum is %d\n", sum);
-
int sub = sub(5, 1);
-
printf("sub is %d\n", sub);
-
return 0;
-
}
我们编写Makefile文件,一点要注意这里的名字一定是大写开头,叫Makefile
-
all:test
-
first.o:first.c
-
gcc -c first.c -o first.o
-
second.o:second.c
-
gcc -c second.c -o second.o
-
third.o:third.c
-
gcc -c third.c -o third.o
-
test:first.o second.o third.o
-
gcc -o test first.o second.o third.o
没有写完,下次在写。
文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。
原文链接:chenyu.blog.csdn.net/article/details/89710895
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)