Skip to content

Commit b27ca78

Browse files
authored
Adapt to having only a subset of variable types supported
1 parent 9345402 commit b27ca78

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

lapack/getf2/Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
TOPDIR = ../..
22
include ../../Makefile.system
33

4+
ifneq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
45
SBLASOBJS = sgetf2_k.$(SUFFIX)
6+
endif
7+
ifeq ($(BUILD_DOUBLE),1)
58
DBLASOBJS = dgetf2_k.$(SUFFIX)
9+
endif
610
QBLASOBJS = qgetf2_k.$(SUFFIX)
11+
ifneq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
712
CBLASOBJS = cgetf2_k.$(SUFFIX)
13+
endif
14+
ifeq ($(BUILD_COMPLEX16),1)
815
ZBLASOBJS = zgetf2_k.$(SUFFIX)
16+
endif
917
XBLASOBJS = xgetf2_k.$(SUFFIX)
1018

1119
sgetf2_k.$(SUFFIX) : getf2_k.c

0 commit comments

Comments
 (0)