diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2019-06-07 13:23:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-07 13:23:07 +0200 |
commit | 26411acd565051b860773b1e3b4f20ad6882872b (patch) | |
tree | 1e8f0f36bd31edd527e0274a2c249c412d0d34ad /Makefile | |
parent | 0ab4076dd8536a7f47b1f047749997fb9c05e80e (diff) | |
parent | 16f3df5d3551ff705d5d23dcdf26853114fb6956 (diff) | |
download | openblas-26411acd565051b860773b1e3b4f20ad6882872b.tar.gz openblas-26411acd565051b860773b1e3b4f20ad6882872b.tar.bz2 openblas-26411acd565051b860773b1e3b4f20ad6882872b.zip |
Merge pull request #2148 from TiborGY/cpp_thread_test_2
Thread safety tester using C++11 threading (cleaned history)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -34,7 +34,7 @@ endif LAPACK_NOOPT := $(filter-out -O0 -O1 -O2 -O3 -Ofast,$(LAPACK_FFLAGS)) -SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench +SUBDIRS_ALL = $(SUBDIRS) test ctest utest exports benchmark ../laswp ../bench cpp_thread_test .PHONY : all libs netlib $(RELA) test ctest shared install .NOTPARALLEL : all libs $(RELA) prof lapack-test install blas-test @@ -127,6 +127,9 @@ endif $(MAKE) -C utest all ifndef NO_CBLAS $(MAKE) -C ctest all +ifeq ($(CPP_THREAD_SAFETY_TEST), 1) + $(MAKE) -C cpp_thread_test all +endif endif endif |