From fcf9b82f14310915052218f850bd60454b3be989 Mon Sep 17 00:00:00 2001 From: traits Date: Tue, 3 May 2011 14:42:11 +0800 Subject: [PATCH] Fixed a build bug with NO_LAPACK=1 and SANNITY_CHECK=1. --- reference/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reference/Makefile b/reference/Makefile index 034f23244..d6368dcda 100644 --- a/reference/Makefile +++ b/reference/Makefile @@ -128,6 +128,8 @@ CBLASOBJS = $(CBLAS1OBJS) $(CBLAS2OBJS) $(CBLAS3OBJS) ZBLASOBJS = $(ZBLAS1OBJS) $(ZBLAS2OBJS) $(ZBLAS3OBJS) XBLASOBJS = $(XBLAS1OBJS) $(XBLAS2OBJS) $(XBLAS3OBJS) +ifneq ($(NO_LAPACK), 1) + SBLASOBJS += \ sgetf2f.$(SUFFIX) sgetrff.$(SUFFIX) slauu2f.$(SUFFIX) slauumf.$(SUFFIX) \ spotf2f.$(SUFFIX) spotrff.$(SUFFIX) strti2f.$(SUFFIX) strtrif.$(SUFFIX) \ @@ -160,6 +162,7 @@ XBLASOBJS += xpotf2f.$(SUFFIX) xpotrff.$(SUFFIX) xtrti2f.$(SUFFIX) xtrtrif.$(SUFFIX) \ xlaswpf.$(SUFFIX) xgetrsf.$(SUFFIX) xgesvf.$(SUFFIX) xpotrif.$(SUFFIX) \ +endif include $(TOPDIR)/Makefile.tail