Makefile 将源文件中不同目录中的目标文件放入一个单独的目录中? [英] Makefile to put object files from source files different directories into a single, separate directory?

查看:25
本文介绍了Makefile 将源文件中不同目录中的目标文件放入一个单独的目录中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 UnitTest++ 来为某些 C++ 代码(应该在 Linux 或 Mac OS X 上构建)创建单元测试.我有这样的目录结构:

I'm using UnitTest++ to allow me to create unit tests for some C++ code (that should build on Linux or Mac OS X). I have a directory structure like this:

src
- Foo.cpp
- Bar.cpp
test
- FooTest.cpp
- BarTest.cpp
- Main.cpp
- Makefile
UnitTest++
- libUnitTest++.a

这个 Makefile(改编自 UnitTest++ Makefile)运行良好(使用 GNU make):

And this Makefile (adapted from the UnitTest++ Makefile) works nicely (with GNU make):

test = TestFooAndBar

src = ../src/Foo.cpp 
    ../src/Bar.cpp

test_src = Main.cpp 
    FooTest.cpp 
    BarTest.cpp

lib = ../UnitTest++/libUnitTest++.a

objects = $(patsubst %.cpp,%.o,$(src))
test_objects = $(patsubst %.cpp,%.o,$(test_src))


.PHONY: all
all: $(test)
    @echo Running unit tests...
    @./$(test)

$(test): $(lib) $(test_objects) $(objects)
    @echo Linking $(test)...
    @$(CXX) $(LDFLAGS) -o $(test) $(test_objects) $(objects) $(lib)

.PHONY: clean
clean:
    -@$(RM) -f $(objects) $(test_objects) $(test) 2> /dev/null

%.o : %.cpp
    @echo $<
    @$(CXX) $(CXXFLAGS) -c $< -o $(patsubst %.cpp,%.o,$<)

但我想将所有 .o 文件放在test"目录的obj"子目录中.我如何修改这个 Makefile 来做到这一点?

But I want to put all the .o files in an "obj" subdirectory of the "test" directory. How do I modify this Makefile to do so?

我已经尝试将obj/"添加到对象和 test_objects 变量中,但我不知道如何修改 %.o 规则,以便它知道 .o 文件的位置并引用正确的 .cpp文件.我是否需要创建两个单独的规则,每组 .cpp 文件一个?

I've tried adding "obj/" to the objects and test_objects variables, but I can't figure out how to modify the %.o rule so it knows where the .o files are and refers to the correct .cpp files. Do I need to create two separate rules, one for each set of .cpp files?

如果不是定义 src 和 test_src 变量,我只是让 Makefile 为所有 .cpp 文件(都在与 Makefile 相同的目录中,并且在 ../src/)?

Would it be simpler if instead of defining the src and test_src variables, I just have the Makefile build a .o (into obj/) for all .cpp files (both in the same directory as the Makefile and in ../src/)?

推荐答案

有不止一种方法可以做到,但这是一个非常好的方法(我真的应该设置热键).

There's more than one way to do it, but this is a pretty good one (I really should have that hotkeyed).

vpath %.cpp ../src

src = Foo.cpp Bar.cpp 
test_src = Main.cpp FooTest.cpp BarTest.cpp 

objects = $(patsubst %.cpp,obj/%.o,$(src)) 
test_objects = $(patsubst %.cpp,obj/%.o,$(test_src)) 

$(objects): | obj

obj:
  @mkdir -p $@

obj/%.o : %.cpp
  @echo $< 
  @$(CXX) $(CXXFLAGS) -c $< -o $@

这篇关于Makefile 将源文件中不同目录中的目标文件放入一个单独的目录中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆