summaryrefslogtreecommitdiff
path: root/BLAS/SRC
diff options
context:
space:
mode:
authorHans Johnson <hans-johnson@uiowa.edu>2016-07-09 11:18:08 -0500
committerHans Johnson <hans-johnson@uiowa.edu>2016-07-09 11:19:33 -0500
commit9c7f84bd600f53c59f89f16ad745e3be5cab2f07 (patch)
treececbca4ae14e2eff829cfd9627c83237d2f339b6 /BLAS/SRC
parent78d32fd2a6d030d388981f096014c764ff7898f5 (diff)
downloadlapack-9c7f84bd600f53c59f89f16ad745e3be5cab2f07.tar.gz
lapack-9c7f84bd600f53c59f89f16ad745e3be5cab2f07.tar.bz2
lapack-9c7f84bd600f53c59f89f16ad745e3be5cab2f07.zip
STYLE: Remove trailing whitespace in MISC files
This is mostly a long term maintenance improvement. Many coding styles require elimination of trailing whitespace, and many editors and source code management configurations automatically gobble up whitespace. When these tools gobble up whitespace, it complicates reviewing the meaningful code changes. By removing whitespace on one patch, it makes future code reviews much easier. =SCRIPT==================================================================== if which tempfile &>/dev/null; then TEMPMAKER=tempfile elif which mktemp &>/dev/null; then TEMPMAKER=mktemp else echo "Cannot find tempfile program." 2>&1 exit 1 fi MYTEMP=$($TEMPMAKER) trap 'rm -f $MYTEMP' SIGINT SIGTERM stripit() { echo "stripping $1" sed 's/[ \t]*$//' "$1" > $MYTEMP cp $MYTEMP "$1" } if [ $# -gt 0 ]; then while [ "$1" != "" ]; do stripit $1 shift done else while read -t 2; do stripit $REPLY done fi rm $MYTEMP =================================================
Diffstat (limited to 'BLAS/SRC')
-rw-r--r--BLAS/SRC/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/BLAS/SRC/Makefile b/BLAS/SRC/Makefile
index 43dbfb74..f36e8ad9 100644
--- a/BLAS/SRC/Makefile
+++ b/BLAS/SRC/Makefile
@@ -56,7 +56,7 @@ include ../../make.inc
#######################################################################
all: $(BLASLIB)
-
+
#---------------------------------------------------------
# Comment out the next 6 definitions if you already have
# the Level 1 BLAS.
@@ -119,7 +119,7 @@ $(ZBLAS2): $(FRC)
# Comment out the next 4 definitions if you already have
# the Level 3 BLAS.
#---------------------------------------------------------
-SBLAS3 = sgemm.o ssymm.o ssyrk.o ssyr2k.o strmm.o strsm.o
+SBLAS3 = sgemm.o ssymm.o ssyrk.o ssyr2k.o strmm.o strsm.o
$(SBLAS3): $(FRC)
CBLAS3 = cgemm.o csymm.o csyrk.o csyr2k.o ctrmm.o ctrsm.o \
@@ -167,5 +167,5 @@ FRC:
clean:
rm -f *.o
-.f.o:
+.f.o:
$(FORTRAN) $(OPTS) -c $< -o $@