通用生成文件

Generic Makefile

本文关键字:文件      更新时间:2023-10-16

我正在寻找一个通用的makefile,它将构建当前目录和所有子目录中的所有C++文件和所有子目录(例如,源,测试文件,gtest等)

我花了几个小时尝试了几个,最终确定了带有源子目录的make文件的解决方案。

我需要对其进行三项更改:

  1. Gtest 使用 *.cc 作为其C++文件,我还有其他使用 *.cpp
  2. 我需要能够定义多个搜索路径。
  3. 添加编译器标志,如 -W all

我已经设法打破了makefile,如下所示,这样运行make给了我

make: *** 没有规则来制定目标%.cpp=%.o', needed by我的程序'。 停。

我怎样才能让它做这三件事?

# Recursively get all *.cpp in this directory and any sub-directories
SRC = $(shell find . -name *.cc) $(shell find . -name *.cpp)
INCLUDE_PATHS = -I ../../../ -I gtest -I dummies
#This tells Make that somewhere below, you are going to convert all your source into 
#objects
# OBJ =  src/main.o src/folder1/func1.o src/folder1/func2.o src/folder2/func3.o
OBJ = $(SRC:%.cc=%.o %.cpp=%.o)
#Tells make your binary is called artifact_name_here and it should be in bin/
BIN = myProgram
# all is the target (you would run make all from the command line). 'all' is dependent
# on $(BIN)
all: $(BIN)
#$(BIN) is dependent on objects
$(BIN): $(OBJ)
    g++ 
#each object file is dependent on its source file, and whenever make needs to create
# an object file, to follow this rule:
%.o: %.cc
    g++ -c $(INCLUDE_PATHS) $< -o $@

[更新] 感谢您到目前为止的帮助。为了解决一些评论,我无法控制混合的 *.cc 和 *.cpp fiel 扩展名,我可以说目录树中永远不会有我不希望包含在构建中的源文件。

我仍然在使用 SRC 时遇到问题,因为找不到输入文件。我想我应该更多地研究 find 命令,因为我使用 Linux 已经有一段时间了。

这是一个相当糟糕的makefile:它不会为您构建标头依赖项,因此您最终可能会得到损坏的构建。

我无耻地推荐这个。

Etan 指出了你的问题。 但是您不必执行两次替换,只需:

OBJ := $(addsuffix .o,$(basename $(SRCS)))

并且,在使用shell函数时,您应该始终使用:=而不是=赋值。