所有文件的Makefile

时间:2013-11-16 23:57:56

标签: c++ makefile

我如何为我的结构编写makefile:

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

我想:

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

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

我试过了:

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

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

1 个答案:

答案 0 :(得分:2)

这是我在很多项目中使用的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&#39;和&#39; object.2.o&#39;什么的。