Adapt to having only a subset of variable types supported

This commit is contained in:
Martin Kroeker
2020-10-11 14:45:40 +02:00
committed by GitHub
parent 20cf1d773f
commit 93454022a9

View File

@@ -17,6 +17,19 @@ ZBLASOBJS += zgetrf_parallel.$(SUFFIX)
XBLASOBJS += xgetrf_parallel.$(SUFFIX)
endif
ifeq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
SBLASOBJS=
endif
ifneq ($(BUILD_DOUBLE),1)
DBLASOBJS=
endif
ifeq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
CBLASOBJS=
endif
ifneq ($(BUILD_COMPLEX16),1)
ZBLASOBJS=
endif
ifeq ($(USE_OPENMP), 1)
GETRF_SRC = getrf_parallel_omp.c
else