Makefile的学习

举报
chenyu 发表于 2021/07/27 00:45:43 2021/07/27
【摘要】 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文件如下


  
  1. #include <stdio.h>
  2. int add(int a, int b)
  3. {
  4. return a;
  5. }

second.c文件如下


  
  1. int sub(int a, int b)
  2. {
  3. return a - b;
  4. }

third.c文件如下


  
  1. int main()
  2. {
  3. int sum = add(1, 2);
  4. printf("sum is %d\n", sum);
  5. int sub = sub(5, 1);
  6. printf("sub is %d\n", sub);
  7. return 0;
  8. }

我们编写Makefile文件,一点要注意这里的名字一定是大写开头,叫Makefile


  
  1. all:test
  2. first.o:first.c
  3. gcc -c first.c -o first.o
  4. second.o:second.c
  5. gcc -c second.c -o second.o
  6. third.o:third.c
  7. gcc -c third.c -o third.o
  8. test:first.o second.o third.o
  9. 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

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。