commands commence before first target. 报错

1 篇文章 0 订阅
1 篇文章 0 订阅

  在写好makefile 文件后 用make -f filename 命令进行编译的时候报错 




原因是makefile 格式不正确。


改正后的写法:

myapp: main.o  2.o 3.o

gcc -o myapp main.o 2.o 3.o
main.o: main.c  a.h
gcc -o main.c
2.o: 2.c a.h b.h
gcc -o 2.c
3.o: 3.c b.h c.h
gcc  -o 3.c


要求是在写依赖关系的时候,要先写目标的名称,紧跟着一个冒号(:),接着是空格或者是制表符(tab),最后用空格或者制表符分割文件列表。


之后再进行编译通过。



运行文件:




更新b.h 头文件


会更新包含了b.h头文件的部分


删除 2.0


会重新的生成2.o 并更新需要用到2.o的地方


源代码:

 main.c


#include <stdio.h>
#include <stdlib.h>
#include "a.h"
extern void function_two();
extern void function_three();


int main(){


  printf("hello world  main ! \n");
  function_two();
  function_three();
}


2.c


#include <stdio.h>
#include "a.h"
#include "b.h"


void function_two(){


  printf("hello world  fun 2 !  \n");
}


3.c


#include <stdio.h>
#include "b.h"
#include "c.h"


void function_three(){


  printf("hello world fun three ! \n");
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值