From bd906e341005fc0bf460ebcf3f6d31433ecef0be Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 30 Jan 2021 16:46:25 +0100 Subject: [PATCH] fix copy-paste error in build rules for cblas_crotg and cblas_zrotg --- interface/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/Makefile b/interface/Makefile index fab403c..3252601 100644 --- a/interface/Makefile +++ b/interface/Makefile @@ -1634,10 +1634,10 @@ cblas_srotg.$(SUFFIX) cblas_srotg.$(PSUFFIX): rotg.c cblas_drotg.$(SUFFIX) cblas_drotg.$(PSUFFIX): rotg.c $(CC) $(CFLAGS) -DCBLAS -c $< -o $(@F) -cblas_crotg.$(SUFFIX) crotg.$(PSUFFIX): zrotg.c +cblas_crotg.$(SUFFIX) cblas_crotg.$(PSUFFIX): zrotg.c $(CC) -c $(CFLAGS) -DCBLAS $< -o $(@F) -cblas_zrotg.$(SUFFIX) zrotg.$(PSUFFIX): zrotg.c +cblas_zrotg.$(SUFFIX) cblas_zrotg.$(PSUFFIX): zrotg.c $(CC) -c $(CFLAGS) -DCBLAS $< -o $(@F) cblas_srotm.$(SUFFIX) cblas_srotm.$(PSUFFIX): rotm.c -- 2.7.4