Makefile可以更高效的编译文件
1. make -v
检查是否安装Makefile
若没有,则输入指令 apt-get install make
进行安装
2. vi Makefile
创建并编译文件
3. 编译文件书写的一个例子
# this is make file //注释
hello.out:max.o min.o hello.c //生成.out文件所需的文件
gcc max.o min.o hello.c -o hello.out //具体生成指令
max.o:max.c //生成所需文件(没有的)
gcc -c max.c
min.o:min.c
gcc -c min.c
4. 输入命令make
后生成.out 文件
来源:CSDN
作者:卡卡fantic
链接:https://blog.csdn.net/qq_42745340/article/details/103794100