diff options
author | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 19:39:13 -0600 |
---|---|---|
committer | Kyle Guinn <elyk03@gmail.com> | 2017-01-22 19:39:13 -0600 |
commit | 3442a58f55673f74ab93f018f3c012532d45de35 (patch) | |
tree | 8329ab4ed76c2ea4e09e6e843db44da0fb9c6c9d /.gitignore | |
parent | bf47acfddcf6f30e338f7fa05de5ac67c2b588ff (diff) | |
download | lapack-3442a58f55673f74ab93f018f3c012532d45de35.tar.gz lapack-3442a58f55673f74ab93f018f3c012532d45de35.tar.bz2 lapack-3442a58f55673f74ab93f018f3c012532d45de35.zip |
Avoid rebuilding CBLAS library and examples
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.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -11,6 +11,17 @@ make.inc BLAS/TESTING/*.out BLAS/TESTING/x* +# CBLAS +CBLAS/include/cblas_mangling.h + +# CBLAS testing +CBLAS/testing/*.out +CBLAS/testing/x* + +# CBLAS examples +CBLAS/examples/cblas_ex1 +CBLAS/examples/cblas_ex2 + # LAPACK testing TESTING/x* TESTING/*.out |