Adapt to having only a subset of variable types supported

This commit is contained in:
Martin Kroeker
2020-10-11 14:46:24 +02:00
committed by GitHub
parent 93454022a9
commit b27ca78a21

View File

@@ -1,11 +1,19 @@
TOPDIR = ../..
include ../../Makefile.system
ifneq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
SBLASOBJS = sgetf2_k.$(SUFFIX)
endif
ifeq ($(BUILD_DOUBLE),1)
DBLASOBJS = dgetf2_k.$(SUFFIX)
endif
QBLASOBJS = qgetf2_k.$(SUFFIX)
ifneq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
CBLASOBJS = cgetf2_k.$(SUFFIX)
endif
ifeq ($(BUILD_COMPLEX16),1)
ZBLASOBJS = zgetf2_k.$(SUFFIX)
endif
XBLASOBJS = xgetf2_k.$(SUFFIX)
sgetf2_k.$(SUFFIX) : getf2_k.c