话不多说,先上代码
sondir :=$(shell pwd)/a #define sondir
parenterdir :=$(shell pwd)/ # currentfir
sonc :=$(wildcard a/*.c)
#sonc :=$(notdir $(sonc))
depend := .all.d
hfiledir :=$(shell pwd)/include/
hfilec :=$(wildcard $(hfiledir)*.h)
parenterc:=$(wildcard $(parenterdir)*.c)
parenterc :=$(notdir $(parenterc))
target:=test #app name
all:$(sonc) $(parenterc) $(hfilec) # $(sonc) $(parenterc)
gcc -o $(target) $^ -MD -MF .$@.d
ifneq ($(depend),)
include $(depend)
endif
clean:
rm $(target)
.PHONY: clean
在使用过程中,只需要更改sondir路径就可以获取到子文件夹下的所有c文件,.h头文件可以放在当前文件夹下,如果需要放在子文件夹下,可以新建名为include文件夹,存放头文件,target为编译出的APP名字,编译后需要清除编译出的app使用 make clean 命令
PS:并没有采用先编译.o再链接的方法,如果需要分步编译可以自己加上编译.o文件命令,也就是说这个make file 每次都会编译所有的文件,想增加分步功能的话,可以自行添加
需要自取,留赞即可
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)