commit 6b3349309083721011e7fc134f97fa9d5dcb7477 parent 26693a06d61ef0aa1c2ea6b1462a6ee209665f10 Author: Fabian Wermelinger <fabianw@mavt.ethz.ch> Date: Fri, 18 Dec 2020 20:41:27 +0100 Remove deprecated Makefile Diffstat:
| D | test/orderVerification/Makefile | | | 53 | ----------------------------------------------------- |
1 file changed, 0 insertions(+), 53 deletions(-)
diff --git a/test/orderVerification/Makefile b/test/orderVerification/Makefile @@ -1,53 +0,0 @@ -CC = g++ - -debug ?= 0 -omp ?= 0 -prec ?= float -sse ?= 0 -align ?= 16 -sundials ?= 0 - -LIBS = -CXXFLAGS = -std=c++11 -g -D_ALIGN_=$(align) -CXXFLAGS += $(extra) - -ifeq "$(debug)" "0" - CXXFLAGS += -O3 -DNDEBUG - CXXFLAGS += -fno-expensive-optimizations -falign-functions=16 -else - CXXFLAGS += -O0 -endif -ifeq "$(omp)" "1" - CXXFLAGS += -fopenmp -D_OMP_ -endif -ifeq "$(prec)" "float" - CXXFLAGS += -D_FLOAT_PRECISION_ - ifeq "$(sundials)" "1" - CXXFLAGS += -DSUNDIALS_SINGLE_PRECISION - endif -else - CXXFLAGS += -D_DOUBLE_PRECISION_ - ifeq "$(sundials)" "1" - CXXFLAGS += -DSUNDIALS_DOUBLE_PRECISION - endif -endif -ifeq "$(sse)" "1" - CXXFLAGS += -msse -msse2 -endif - -CXXFLAGS += -I../../include/ -I../../include/TimeStepper -I. -ifeq "$(sundials)" "1" - CXXFLAGS += -D_USE_SUNDIALS_ - CXXFLAGS += -I../thirdParty/sundials/build/include - LIBS += -L../thirdParty/sundials/build/lib -lsundials_cvode -lsundials_nvecserial -endif - -HDR = $(wildcard *.h) -CXXFLAGS += -I.. -I../.. -.PHONY := clean - -orderVerification: orderVerification.cpp $(HDR) - $(CC) $(CXXFLAGS) orderVerification.cpp -o orderVerification $(LIBS) - -clean: - rm -f *~ orderVerification