Browse Source

fix copy-paste error in build rules for cblas_crotg and cblas_zrotg

tags/v0.3.14^2
Martin Kroeker GitHub 4 years ago
parent
commit
bd906e3410
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      interface/Makefile

+ 2
- 2
interface/Makefile View File

@@ -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


Loading…
Cancel
Save