diff options
author | Martin Kroeker <martin@ruby.chemie.uni-freiburg.de> | 2019-07-24 20:19:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-24 20:19:21 +0200 |
commit | 561f3fd99514cc3cd71d2bf7bc39eeebc75e41d0 (patch) | |
tree | 2458c1ccbf1a26338b6b099b54933264d04155d9 | |
parent | 4250e6ed641a90e6cd0a7980999d84805562c78a (diff) | |
parent | 30efed14d1aa9e1fba887aeddac964b841dd4720 (diff) | |
download | openblas-561f3fd99514cc3cd71d2bf7bc39eeebc75e41d0.tar.gz openblas-561f3fd99514cc3cd71d2bf7bc39eeebc75e41d0.tar.bz2 openblas-561f3fd99514cc3cd71d2bf7bc39eeebc75e41d0.zip |
Merge pull request #2193 from martin-frbg/makeutest
Override special make variables
-rw-r--r-- | ctest/Makefile | 2 | ||||
-rw-r--r-- | utest/Makefile | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ctest/Makefile b/ctest/Makefile index 569a5dda3..f562c9bb3 100644 --- a/ctest/Makefile +++ b/ctest/Makefile @@ -6,6 +6,8 @@ TOPDIR = .. include $(TOPDIR)/Makefile.system override CFLAGS += -DADD$(BU) -DCBLAS +override TARGET_ARCH= +override TARGET_MACH= LIB = $(TOPDIR)/$(LIBNAME) diff --git a/utest/Makefile b/utest/Makefile index cbe639cdb..5846db0bb 100644 --- a/utest/Makefile +++ b/utest/Makefile @@ -1,6 +1,9 @@ UTEST_CHECK = 1 TOPDIR = .. +override TARGET_ARCH= +override TARGET_MACH= + UTESTBIN=openblas_utest .PHONY : all |