#endif
func.c
#include “stdio.h”
#include “func.h”
void foo()
{
printf(“void foo() : %s\n”, HELLO);
}
main.c
#include <stdio.h>
#include “func.h”
int main()
{
foo();
return 0;
}
makefile
OBJS := func.o main.o
hello.out : $(OBJS)
#链接
@gcc -o $@ $^
@echo “Target File ==> $@”
#通过 规则中的模式替换 为 func.o main.o 和两个目标生成真真正正的规则。
$(OBJS) : %.o : %.c
#编译
@gcc -o $@ -c $^
mhr@ubuntu:~/work/makefile1$ make
Target File ==> hello.out
mhr@ubuntu:~/work/makefile1$
**修改 func.h头文件,makefile中的目标不会被执行**
#ifndef FUNC_H
#define FUNC_H
#define HELLO “Hello makefile”
void foo();
#endif
mhr@ubuntu:~/work/makefile1$ make
make: ‘hello.out’ is up to date.
mhr@ubuntu:~/work/makefile1$
居然没有发生变化!并不是我们期望的 Hello makefile。为什么?因为这个makefile 并没有考虑目标文件对头文件的间接依赖,所以说 就算改动了头文件,make 也不知道,makefile 中描述的规则只会去查看源文件是否比目标文件更新,结果源文件没改动,所以不会重新编译。
**修改 makefiel ,直接在makefile中添加 func.h 依赖**
OBJS := func.o main.o
hello.out : $(OBJS)
@gcc -o $@ $^
@echo “Target File ==> $@”
$(OBJS) : %.o : %.c func.h
@gcc -o $@ -c $<
mhr@ubuntu:~/work/makefile1$ make
Target File ==> hello.out
mhr@ubuntu:~/work/makefile1$
直接在makefile中添加 func.h 依赖,这样一来,通过上面模式规则所生成的真正规则当中,每一个.o 文件都会依赖到 .h 头文件。
**这样做的弊端:**
## 最后
**自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。**
**深知大多数Java工程师,想要提升技能,往往是自己摸索成长,自己不成体系的自学效果低效漫长且无助。**
**因此收集整理了一份《2024年嵌入式&物联网开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
![img](https://img-blog.csdnimg.cn/img_convert/6b3095e4103d7702ece6c1dc2f35439a.png)
![img](https://img-blog.csdnimg.cn/img_convert/1b48b35c35e90943cee37b59c6bbe83e.jpeg)
![img](https://img-blog.csdnimg.cn/img_convert/c57a239ca90de16d08258301a587e4f4.png)
![img](https://img-blog.csdnimg.cn/img_convert/0dcb0098b96c2e75a2b6bf661a093aaa.png)
![img](https://img-blog.csdnimg.cn/img_convert/fa7422a1745583130c9877c9916f58b3.png)
![img](https://img-blog.csdnimg.cn/img_convert/e3ffb3c293c7311022301ee9ca7c7427.png)
![](https://img-blog.csdnimg.cn/img_convert/02eb0cc083c22e92e267195da756d1df.png)
**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上嵌入式&物联网开发知识点,真正体系化!**
[**如果你觉得这些内容对你有帮助,需要这份全套学习资料的朋友可以戳我获取!!**](https://bbs.csdn.net/topics/618654289)
**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**!!
这份全套学习资料的朋友可以戳我获取!!**](https://bbs.csdn.net/topics/618654289)
**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**!!