5

我正在尝试使用名为 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]

这里发生了什么?标题应该被包含,而不是编译,那么为什么 make 要求一个呢?

提前致谢!

解决方案:

不包括 makefile,而是在我自己的 makefile 中编译源代码。有效!再次感谢。

4

2 回答 2

4

make程序希望所有文件都在当前目录中。由于您将第二个 makefile 包含到当前 makefile 中,因此其中的所有文件也都相对于当前目录。您必须确保包含的 makefile 中的文件包含正确的路径。

于 2012-12-18T14:28:30.650 回答
3

Make 在找不到依赖项时会出现此错误;然后它会尝试构建该依赖项,但不知道创建此头文件的规则。

您可能打错了头文件的名称。

于 2012-12-18T14:16:16.010 回答