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
This commit is contained in:
Alfredo Adolfo Gimenez
2016-12-18 16:27:47 -08:00
committed by Todd Gamblin
parent 0de7b5504e
commit 68e9a2ed8d
2 changed files with 16 additions and 4 deletions

View File

@@ -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')