我正在尝试使用名为BigInt的库创建项目。我的文件结构是:
/Users/wen/Projects/challenge/fibonacci3/fibonacci3.cpp
/Users/wen/Projects/challenge/fibonacci3/Makefile
/Users/wen/Projects/include/bigint/<.cc files and .hh files>
/Users/wen/Projects/include/bigint/Makefile
Fibonacci3 Makefile是
的LD_FLAGS =
CC_FLAGS =
# Include libraries
include /Users/wen/Projects/include/bigint/Makefile
# Build object files
%.o: %.cc %.cpp $(library-cpp)
g++ -c -o $@ $(CC_FLAGS)
# Link object files
fibonacci3: fibonacci3.o $(library-objects)
g++ -o $@ $(LD_FLAGS)
和bigint Makefile是(缩短的)
# Mention default target.
all:
# Implicit rule to compile C++ files. Modify to your taste.
%.o: %.cc
g++ -c -O2 -Wall -Wextra -pedantic $<
# Components of the library.
library-cpp = \
BigUnsigned.cc \
BigInteger.cc \
BigIntegerAlgorithms.cc \
BigUnsignedInABase.cc \
BigIntegerUtils.cc \
library-objects = \
BigUnsigned.o \
BigInteger.o \
BigIntegerAlgorithms.o \
BigUnsignedInABase.o \
BigIntegerUtils.o \
library-headers = \
NumberlikeArray.hh \
BigUnsigned.hh \
BigInteger.hh \
BigIntegerAlgorithms.hh \
BigUnsignedInABase.hh \
BigIntegerLibrary.hh \
但是,make
报告无法找到标题文件的规则?
make: *** No rule to make target `NumberlikeArray.hh', needed by `BigUnsigned.o'. Stop.
[Finished in 0.0s with exit code 2]
这里发生了什么?标题应该包括在内,而不是编译,所以为什么要求一个?
提前致谢!
不要包含makefile,而是在我自己的makefile中编译源代码。有效!再次感谢。
答案 0 :(得分:2)
Make无法找到依赖项时会出现此错误;然后它尝试构建该依赖项,但不知道制作此头文件的规则。
您可能输错了头文件的名称。
答案 1 :(得分:2)
make
程序希望所有文件都在当前目录中。由于您将第二个makefile包含在当前makefile中,因此其中的所有文件也相对于当前目录。您必须确保包含的makefile中的文件包含正确的路径。