Merge current Makefile from develop

This commit is contained in:
Martin Kroeker 2018-02-10 14:10:55 +01:00 committed by GitHub
parent a1bc0fcf07
commit 632b8e0f05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions

View File

@ -8,11 +8,19 @@ UTESTBIN=openblas_utest
include $(TOPDIR)/Makefile.system include $(TOPDIR)/Makefile.system
OBJS=utest_main.o test_amax.o test_fork.o test_rotmg.o OBJS=utest_main.o test_amax.o test_rotmg.o
#test_rot.o test_swap.o test_axpy.o test_dotu.o test_rotmg.o test_dsdot.o test_fork.o #test_rot.o test_swap.o test_axpy.o test_dotu.o test_dsdot.o test_fork.o
ifneq ($(NO_LAPACK), 1) ifneq ($(NO_LAPACK), 1)
OBJS += test_potrs.o #OBJS += test_potrs.o
endif
ifndef OS_WINDOWS
OBJS += test_fork.o
else
ifdef OS_CYGWIN_NT
OBJS += test_fork.o
endif
endif endif
all : run_test all : run_test