Skip to content

Commit 87dd1c7

Browse files
authored
fix conditional gemm3m build
1 parent ba201c1 commit 87dd1c7

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

ctest/Makefile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ ztestl3o = c_zblas3.o c_z3chke.o auxiliary.o c_xerbla.o constant.o
6161
ztestl3o_3m = c_zblas3_3m.o c_z3chke_3m.o auxiliary.o c_xerbla.o constant.o
6262

6363

64-
all :: all1 all2 all3 all3_3m
64+
all :: all1 all2 all3
6565

6666
ifeq ($(BUILD_SINGLE),1)
6767
all1targets += xscblat1
@@ -162,9 +162,15 @@ all3targets += xdcblat3
162162
endif
163163
ifeq ($(BUILD_COMPLEX),1)
164164
all3targets += xccblat3
165+
ifeq ($(USE_GEMM3M),1)
166+
all3targets += xccblat3_3m
167+
endif
165168
endif
166169
ifeq ($(BUILD_COMPLEX16),1)
167170
all3targets += xzcblat3
171+
ifeq ($(USE_GEMM3M),1)
172+
all3targets += xzcblat3_3m
173+
endif
168174
endif
169175

170176
all3: $(all3targets)
@@ -199,7 +205,6 @@ endif
199205
endif
200206
endif
201207

202-
all3_3m: xzcblat3_3m xccblat3_3m
203208
ifeq ($(SUPPORT_GEMM3M),1)
204209
ifeq ($(USE_OPENMP), 1)
205210
ifeq ($(BUILD_COMPLEX),1)

0 commit comments

Comments
 (0)