summaryrefslogtreecommitdiff
path: root/INSTALL/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2017-01-22Move some rules to INSTALL/MakefileKyle Guinn1-3/+15
2016-11-25merging: Various cleanups to makefiles #84Julie1-13/+13
Contribution by @turboencabulator Closing #84
2016-07-09STYLE: Remove trailing whitespace in MISC filesHans Johnson1-3/+3
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 =================================================
2011-10-01Format changes to INSTALL/Makefileigor1751-3/+3
2008-12-16(no commit message)julie1-1/+1
2008-10-28Move LAPACK trunk into position.jason1-0/+35