Adapt to having only a subset of variable types supported
This commit is contained in:
parent
93454022a9
commit
b27ca78a21
|
@ -1,11 +1,19 @@
|
||||||
TOPDIR = ../..
|
TOPDIR = ../..
|
||||||
include ../../Makefile.system
|
include ../../Makefile.system
|
||||||
|
|
||||||
|
ifneq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
|
||||||
SBLASOBJS = sgetf2_k.$(SUFFIX)
|
SBLASOBJS = sgetf2_k.$(SUFFIX)
|
||||||
|
endif
|
||||||
|
ifeq ($(BUILD_DOUBLE),1)
|
||||||
DBLASOBJS = dgetf2_k.$(SUFFIX)
|
DBLASOBJS = dgetf2_k.$(SUFFIX)
|
||||||
|
endif
|
||||||
QBLASOBJS = qgetf2_k.$(SUFFIX)
|
QBLASOBJS = qgetf2_k.$(SUFFIX)
|
||||||
|
ifneq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
|
||||||
CBLASOBJS = cgetf2_k.$(SUFFIX)
|
CBLASOBJS = cgetf2_k.$(SUFFIX)
|
||||||
|
endif
|
||||||
|
ifeq ($(BUILD_COMPLEX16),1)
|
||||||
ZBLASOBJS = zgetf2_k.$(SUFFIX)
|
ZBLASOBJS = zgetf2_k.$(SUFFIX)
|
||||||
|
endif
|
||||||
XBLASOBJS = xgetf2_k.$(SUFFIX)
|
XBLASOBJS = xgetf2_k.$(SUFFIX)
|
||||||
|
|
||||||
sgetf2_k.$(SUFFIX) : getf2_k.c
|
sgetf2_k.$(SUFFIX) : getf2_k.c
|
||||||
|
|
Loading…
Reference in New Issue