summaryrefslogtreecommitdiff
path: root/CBLAS/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2017-02-06Simplify the clean targetsKyle Guinn1-8/+12
cleanobj: Remove object files cleanlib: Remove libraries cleanexe: Remove test and example executables cleantest: Remove test output and core dumps clean: All of the above
2017-02-05Use $(MAKE) -C for recursionKyle Guinn1-7/+7
2017-02-05Fix missing or unnecessary prerequisitesKyle Guinn1-12/+12
2017-01-22Avoid rebuilding CBLAS library and examplesKyle Guinn1-2/+2
Use targets that are actual filenames so that make can determine if the target is already up-to-date. Since $(CBLASLIB) is a relative path, delete it from a Makefile at the right depth.
2016-11-25merging: Various cleanups to makefiles #84Julie1-1/+1
Contribution by @turboencabulator Closing #84
2016-07-09STYLE: Remove trailing whitespace in MISC filesHans Johnson1-1/+1
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 =================================================
2016-07-04STYLE: Change source template files to .in extensionHans Johnson1-1/+1
The cblas_mangling_with_flags.h and lapacke_mangling_with_flags.h are template files that are not used directly. They need to be configured (i.e. copied) to lapacke_mangling.h and cblas_mangling.h header files that are used. These renamings make the intent of these files more clearly reported. The file LAPACKE/include/lapacke_mangling.h should not be stored in the repository because it should be generated (copied from above) at build time.
2014-10-08Fixing folder uppercase / lower case issue - Thank you Donjulie1-0/+27