diff options
author | Zhang Xianyi <traits.zhang@gmail.com> | 2014-07-08 17:26:49 +0800 |
---|---|---|
committer | Zhang Xianyi <traits.zhang@gmail.com> | 2014-07-08 17:26:49 +0800 |
commit | 698e77dba4bf13384ea9a8c2cdd099235368bf2e (patch) | |
tree | 7494bc99ec4e2b8b42cef1ecaa14f08228be4cb2 | |
parent | 552119c48429c76a701600d05d3a1f472a41c65c (diff) | |
download | openblas-698e77dba4bf13384ea9a8c2cdd099235368bf2e.tar.gz openblas-698e77dba4bf13384ea9a8c2cdd099235368bf2e.tar.bz2 openblas-698e77dba4bf13384ea9a8c2cdd099235368bf2e.zip |
Refs #406. Fixed utest building bug.
-rw-r--r-- | utest/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/utest/Makefile b/utest/Makefile index 31cb93176..fa05458cc 100644 --- a/utest/Makefile +++ b/utest/Makefile @@ -1,15 +1,19 @@ UTEST_CHECK = 1 TOPDIR = .. -include $(TOPDIR)/Makefile.system TARGET=openblas_utest +.PHONY : all +.NOTPARALLEL : all run_test $(TARGET) + CUNIT_URL=http://downloads.sourceforge.net/project/cunit/CUnit/2.1-2/CUnit-2.1-2-src.tar.bz2 CUNIT_DIR=$(CURDIR)/CUnit-2.1-2 CUNIT_LIB=$(CUNIT_DIR)/lib/libcunit.a -CFLAGS+=-I$(CUNIT_DIR)/include +CFLAGS +=-I$(CUNIT_DIR)/include + +include $(TOPDIR)/Makefile.system OBJS=main.o test_rot.o test_swap.o test_axpy.o test_dotu.o test_rotmg.o test_dsdot.o test_amax.o test_fork.o |