Add proper defaults for IMIN/IMAX
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Thu, 27 Jan 2022 18:56:32 +0000 (19:56 +0100)
committerGitHub <noreply@github.com>
Thu, 27 Jan 2022 18:56:32 +0000 (19:56 +0100)
kernel/sparc/KERNEL

index 594fd05..a8c958b 100644 (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