From 632b8e0f05caa46327553fa1b6519fea72232b39 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Sat, 10 Feb 2018 14:10:55 +0100 Subject: [PATCH] Merge current Makefile from develop --- utest/Makefile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/utest/Makefile b/utest/Makefile index b33734c6c..03457b0c4 100644 --- a/utest/Makefile +++ b/utest/Makefile @@ -8,11 +8,19 @@ UTESTBIN=openblas_utest include $(TOPDIR)/Makefile.system -OBJS=utest_main.o test_amax.o test_fork.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 +OBJS=utest_main.o test_amax.o test_rotmg.o +#test_rot.o test_swap.o test_axpy.o test_dotu.o test_dsdot.o test_fork.o 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 all : run_test