We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9345402 commit b27ca78Copy full SHA for b27ca78
lapack/getf2/Makefile
@@ -1,11 +1,19 @@
1
TOPDIR = ../..
2
include ../../Makefile.system
3
4
+ifneq "$(or $(BUILD_SINGLE),$(BUILD_DOUBLE))" ""
5
SBLASOBJS = sgetf2_k.$(SUFFIX)
6
+endif
7
+ifeq ($(BUILD_DOUBLE),1)
8
DBLASOBJS = dgetf2_k.$(SUFFIX)
9
10
QBLASOBJS = qgetf2_k.$(SUFFIX)
11
+ifneq "$(or $(BUILD_COMPLEX),$(BUILD_COMPLEX16))" ""
12
CBLASOBJS = cgetf2_k.$(SUFFIX)
13
14
+ifeq ($(BUILD_COMPLEX16),1)
15
ZBLASOBJS = zgetf2_k.$(SUFFIX)
16
17
XBLASOBJS = xgetf2_k.$(SUFFIX)
18
19
sgetf2_k.$(SUFFIX) : getf2_k.c
0 commit comments