一个Makefile的进化(初始化)
Makefile中的helloworld
有了Makefile的基础知识接下来就要在设计工作中进行使用了
在此写一下一个Makefile从简陋到完整的过程
开篇是Makefile最简单的结构
文件目录如下
string@asus:~/Projects/makefile$ ls
Makefile test.c
all:test
test:test.o
gcc test.o -o test
test.o:test.c
gcc -c test.c -o test.o
clean:
rm -f test.o
rm -f test
.PHONY : clean
如果只是做一个简单的程序,这个Makefile已经可以工作了,如果还需要更复杂的工作则还有很多工作需要完善,接下来通过不断完善这个Makefile加深对Makefile的理解
网友评论