Add proper defaults for IMIN/IMAX

This commit is contained in:
Martin Kroeker 2022-01-27 19:56:32 +01:00 committed by GitHub
parent 204e021515
commit addc2a7aaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -39,11 +39,19 @@ IZAMINKERNEL = izamax.S
endif
ifndef ISMINKERNEL
ISMINKERNEL = iamax.S
ISMINKERNEL = imax.S
endif
ifndef IDMINKERNEL
IDMINKERNEL = iamax.S
IDMINKERNEL = imax.S
endif
ifndef ISMAXKERNEL
ISMAXKERNEL = imax.S
endif
ifndef IDMAXKERNEL
IDMAXKERNEL = imax.S
endif
ifndef SNRM2KERNEL