Loading tests/Makefile +2 −2 Original line number Diff line number Diff line Loading @@ -5,11 +5,11 @@ CXX = g++ -O2 CXXFLAGS = -std=c++17 # Source files PROBLEM3_SRCS = testFullInteger.cpp FullInteger.cpp IntegerPP.cpp IntegerP.cpp BigNum.cpp PROBLEM3_SRCS = testFullInteger.cpp impl/FullInteger.cpp impl/IntegerPP.cpp impl/IntegerP.cpp impl/BigNum.cpp SRCS = $(PROBLEM3_SRCS) # Object files PROBLEM3_OBJS = testFullInteger.o FullInteger.o IntegerPP.o IntegerP.o BigNum.o PROBLEM3_OBJS = testFullInteger.o impl/FullInteger.o impl/IntegerPP.o impl/IntegerP.o impl/BigNum.o OBJS = $(PROBLEM3_OBJS) # Executable name Loading tests/BigNum.cpp→tests/impl/BigNum.cpp +0 −0 File moved. View file tests/IntegerP.cpp→tests/impl/IntegerP.cpp +0 −0 File moved. View file tests/IntegerPP.cpp→tests/impl/IntegerPP.cpp +0 −0 File moved. View file tests/BigNum.h→tests/include/BigNum.h +0 −0 File moved. View file Loading
tests/Makefile +2 −2 Original line number Diff line number Diff line Loading @@ -5,11 +5,11 @@ CXX = g++ -O2 CXXFLAGS = -std=c++17 # Source files PROBLEM3_SRCS = testFullInteger.cpp FullInteger.cpp IntegerPP.cpp IntegerP.cpp BigNum.cpp PROBLEM3_SRCS = testFullInteger.cpp impl/FullInteger.cpp impl/IntegerPP.cpp impl/IntegerP.cpp impl/BigNum.cpp SRCS = $(PROBLEM3_SRCS) # Object files PROBLEM3_OBJS = testFullInteger.o FullInteger.o IntegerPP.o IntegerP.o BigNum.o PROBLEM3_OBJS = testFullInteger.o impl/FullInteger.o impl/IntegerPP.o impl/IntegerP.o impl/BigNum.o OBJS = $(PROBLEM3_OBJS) # Executable name Loading