File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ ifeq ($(ARCH), MIPS)
19
19
SUPPORT_GEMM3M = 1
20
20
endif
21
21
22
- ifndef NO_FBLAS
22
+ ifneq ( $( NO_FBLAS ) , 1)
23
23
24
24
SBLAS1OBJS = \
25
25
saxpy.$(SUFFIX ) sswap.$(SUFFIX ) \
@@ -146,7 +146,7 @@ ZBLAS3OBJS += zgemm3m.$(SUFFIX)
146
146
147
147
endif
148
148
149
- ifdef EXPRECISION
149
+ ifeq ( $( EXPRECISION ) , 1)
150
150
151
151
QBLAS1OBJS = \
152
152
qaxpy.$(SUFFIX ) qswap.$(SUFFIX ) \
@@ -511,11 +511,11 @@ endif
511
511
512
512
FUNCOBJS = $(SBEXTOBJS ) $(CXERBLAOBJS ) $(SBBLASOBJS ) $(SBLASOBJS ) $(DBLASOBJS ) $(CBLASOBJS ) $(ZBLASOBJS )
513
513
514
- ifdef EXPRECISION
514
+ ifeq ( $( EXPRECISION ) , 1)
515
515
FUNCOBJS += $(QBLASOBJS ) $(XBLASOBJS )
516
516
endif
517
517
518
- ifdef QUAD_PRECISION
518
+ ifeq ( $( QUAD_PRECISION ) , 1)
519
519
FUNCOBJS += $(QBLASOBJS ) $(XBLASOBJS )
520
520
endif
521
521
You can’t perform that action at this time.
0 commit comments