From 189ca1bceec45bdf3ed17bcdac3145fde91b0f56 Mon Sep 17 00:00:00 2001 From: wernsaar Date: Sun, 11 May 2014 12:09:34 +0200 Subject: [PATCH] removed lapack objects from interface/Makefile --- interface/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/interface/Makefile b/interface/Makefile index a700e6542..708761559 100644 --- a/interface/Makefile +++ b/interface/Makefile @@ -2,11 +2,11 @@ TOPDIR = .. include $(TOPDIR)/Makefile.system ifeq ($(ARCH), x86) -SUPPORT_GEMM3M = 1 +SUPPORT_GEMM3M = 0 endif ifeq ($(ARCH), x86_64) -SUPPORT_GEMM3M = 1 +SUPPORT_GEMM3M = 0 endif ifeq ($(ARCH), ia64) @@ -372,15 +372,15 @@ XLAPACKOBJS = \ xpotf2.$(SUFFIX) xpotrf.$(SUFFIX) xtrti2.$(SUFFIX) xtrtri.$(SUFFIX) \ xlaswp.$(SUFFIX) xgetrs.$(SUFFIX) xgesv.$(SUFFIX) xpotri.$(SUFFIX) \ -ifneq ($(NO_LAPACK), 1) -SBLASOBJS += $(SLAPACKOBJS) -DBLASOBJS += $(DLAPACKOBJS) -QBLASOBJS += $(QLAPACKOBJS) -CBLASOBJS += $(CLAPACKOBJS) -ZBLASOBJS += $(ZLAPACKOBJS) -XBLASOBJS += $(XLAPACKOBJS) +#ifneq ($(NO_LAPACK), 1) +#SBLASOBJS += $(SLAPACKOBJS) +#DBLASOBJS += $(DLAPACKOBJS) +#QBLASOBJS += $(QLAPACKOBJS) +#CBLASOBJS += $(CLAPACKOBJS) +#ZBLASOBJS += $(ZLAPACKOBJS) +#XBLASOBJS += $(XLAPACKOBJS) -endif +#endif FUNCOBJS = $(SBLASOBJS) $(DBLASOBJS) $(CBLASOBJS) $(ZBLASOBJS)