$<在 makefile 中似乎给出了空输出
我正在尝试为我的测试 C++ 项目编写一个 makefile,该项目使用单独的源代码和目标文件目录。 我遵循了 StackOverflow 上另一个问题的答案(遗憾的是我再也找不到了),但我一定做错了什么。
我的 makefile 如下所示:
INCLUDE=-I /usr/include/boost/
LIBDIR=-L /usr/lib/x86_64-linux-gnu/
LIBS=-lboost_date_time
SOURCES=$(wildcard src/*.cpp)
OBJDIR=obj/
OBJECTS=$(patsubst %.cpp, %.o, $(SOURCES))
a.out: $(OBJECTS)
g++ $(LIBDIR) $(LIBS) $(OBJECTS)
$(OBJECTS): obj/%.o : src/%.cpp
g++ $(INCLUDE) -c $< -o $@
clean:
rm obj/*.o
cleanall:
rm obj/*.o a.out
这是项目目录:
~/Programming/testing-cpp
❯ tree
.
├── makefile
├── obj/
└── src/
├── main.cpp
├── message.cpp
└── message.h
2 directories, 5 files
当我尝试运行 make
时,我得到以下信息:
~/Programming/testing-cpp
❯ make
makefile:25: target 'src/message.o' doesn't match the target pattern
makefile:25: target 'src/main.o' doesn't match the target pattern
g++ -I /usr/include/boost/ -c -o src/message.o
g++: fatal error: no input files
compilation terminated.
make: *** [makefile:26: src/message.o] Error 1
从读取 g++ -I /usr/include/boost/ - 的行中c -o src/message.o
似乎 $<
给了我一个空输出。这是为什么呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据评论,
OBJECTS
中的所有对象文件路径仍然具有分配中的src/
前缀...相反,您需要替换目录前缀和扩展使用(未经测试)...
As per the comment, all of your object file paths in
OBJECTS
still have thesrc/
prefix from the assignment...Instead you need to replace both the directory prefix and the extension using (untested)...