Makefile通用模板

Posted 北雨南萍

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Makefile通用模板相关的知识,希望对你有一定的参考价值。

###################################################################
# Desc: C++的Makefile模板

###################################################################
# 可执行程序的名称
EXECUTABLE = app_name
# 库的路径
LIBDIR     = ./
# 第三方库
LIBS       = pthread dl crypto ssl 
# 头文件路径
INCLUDES   = ./
# 源文件路径,使用shell命令查找当前目录和子目录
SRCDIR     = $(shell find . -maxdepth 1 \\( -type d -o -type l \\) -name obj ! -name output ! -name test)
#
# 编译选项设置
CC  = gcc
CXX = g++
CFLAGS    = -g -Wall -O3
CPPFLAGS  = $(CFLAGS)
CPPFLAGS += $(addprefix -I, $(INCLUDES))
CPPFLAGS += -MMD
#
#
RM-F  = rm -f
MKDIR = mkdir
### 
# wildcard : 扩展通配符,获得目录下所有的指定后缀的文件 
# notdir   :去除路径, 去掉不需要的路径 
# patsubst :替换通配符:  将.cpp 替换成 .o
# addsuffix:添加前缀: 将/*.cpp 前面加上路径 
###
#
SRCS  = $(wildcard $(addsuffix /*.cpp, $(SRCDIR)))
OBJS  = $(patsubst %.cpp,%.o,$(SRCS))
DEPS  = $(patsubst %.o,%.d,$(OBJS))
MISSING_DEPS  = $(filter-out $(wildcard $(DEPS)),$(DEPS))
MISSING_DEPS_SOURCES = $(wildcard $(patsubst %.d,%.cpp,$(MISSING_DEPS)))
#
#
.PHONY : all deps objs clean veryclean rebuild info
#
all: $(EXECUTABLE)

deps : $(DEPS)

objs : $(OBJS)

clean :
    @$(RM-F) *.o
    @$(RM-F) *.d
veryclean: clean
    @$(RM-F) $(EXECUTABLE)

rebuild: veryclean all
ifneq ($(MISSING_DEPS),)
$(MISSING_DEPS) :
    @$(RM-F) $(patsubst %.d,%.o,$@)
endif
-include $(DEPS)
$(EXECUTABLE) : $(OBJS)
    $(CXX) $(CPPFLAGS) -o $(EXECUTABLE) $(OBJS) $(addprefix -L,$(LIBDIR)) $(addprefix -l,$(LIBS))
#
# 用于检查路径
info:
    @echo $(SRCS)
    @echo $(OBJS)
    @echo $(DEPS)
    @echo $(MISSING_DEPS)
    @echo $(MISSING_DEPS_SOURCES)
 

以上是关于Makefile通用模板的主要内容,如果未能解决你的问题,请参考以下文章

Makefile通用模板

写一个驱动通用的Makefile

省事之通用Makefile模版

一个通用Makefile

通用 Makefile(及makefile中的notdir,wildcard和patsubst)

项目通用Makefile的编写(包含Makefile.build文件分析)