summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAlfredo Adolfo Gimenez <alfredo.gimenez@gmail.com>2016-12-18 16:27:47 -0800
committerTodd Gamblin <tgamblin@llnl.gov>2016-12-18 16:27:47 -0800
commit68e9a2ed8daf4b43fe19cd062ff37a04c7978c10 (patch)
tree19c83c2d1160cbb2a69f4c7318642da54d400c0d /var
parent0de7b5504e52ccd47c6e20908f2c0968d80571d4 (diff)
downloadspack-68e9a2ed8daf4b43fe19cd062ff37a04c7978c10.tar.gz
spack-68e9a2ed8daf4b43fe19cd062ff37a04c7978c10.tar.bz2
spack-68e9a2ed8daf4b43fe19cd062ff37a04c7978c10.tar.xz
spack-68e9a2ed8daf4b43fe19cd062ff37a04c7978c10.zip
Added customization for make targets in 'build' and 'install' phases for AutotoolsPackage (#2464)
* Customization for make targets in build and test phases for AutotoolsPackage * Updated Blitz++ to use customized make build and test targets * Removed flake8 error * Removed make test customization, added make install customization, need to figure out issues with multiple make targets * Changed build_targets and install_targets to normal attributes
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/blitz/package.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/blitz/package.py b/var/spack/repos/builtin/packages/blitz/package.py
index 16ad3bc2ab..d6fd31d637 100644
--- a/var/spack/repos/builtin/packages/blitz/package.py
+++ b/var/spack/repos/builtin/packages/blitz/package.py
@@ -31,3 +31,9 @@ class Blitz(AutotoolsPackage):
url = "https://github.com/blitzpp/blitz/tarball/1.0.0"
version('1.0.0', '9f040b9827fe22228a892603671a77af')
+
+ build_targets = ['lib']
+
+ def check(self):
+ make('check-testsuite')
+ make('check-examples')