gpt4 book ai didi

c++ - 所有文件的 Makefile

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:10:49 26 4
gpt4 key购买 nike

如何为我的结构编写 makefile:

/ --
/bin
/out
/src --
/dir1
/dir2
...
/dirN
main.cpp

我要:

  • 从/src 目录递归编译所有文件
  • 所有 .out 文件到/out,没有 src 目录结构
  • 用所有.out 文件编译main.cpp

我有 .c.cpp 文件要编译和链接。

我试过:

${OBJ_DIR}/%.o: $(SRC_DIR)/%.cpp
$(CXX) -c $< -o $@ ${CFLAGS}

但我现在不知道如何让all规则...

最佳答案

这是我在很多项目中使用的 Makefile:

# Compiler
CC = g++
OPTS = -std=c++11

# Project name
PROJECT = foo_example_program

# Libraries
LIBS = -lpthread
INCS = -I./src/include

SRCS = $(shell find src -name '*.cpp')
DIRS = $(shell find src -type d | sed 's/src/./g' )
OBJS = $(patsubst src/%.cpp,out/%.o,$(SRCS))

# Targets
$(PROJECT): buildrepo $(OBJS)
$(CC) $(OPTS) $(OBJS) $(LIBS) $(INCS) -o $@

out/%.o: src/%.cpp
$(CC) $(OPTS) -c $< $(INCS) -o $@

clean:
rm $(PROJECT) out -Rf

buildrepo:
mkdir -p out
for dir in $(DIRS); do mkdir -p out/$$dir; done

注意:回想起来,我记得为什么我复制了 src 目录结构——也就是说,如果两个文件在多个目录中被命名为相同的东西,它们会相互覆盖。一种解决方案是为每个目标文件添加某种类型的标识符。例如,末尾的数字。当找到重复的目标文件时,您可以将目标文件命名为“object.1.o”和“object.2.o”或其他名称。

关于c++ - 所有文件的 Makefile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20025466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com