Skip to content

Commit 632b8e0

Browse files
authored
Merge current Makefile from develop
1 parent a1bc0fc commit 632b8e0

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

utest/Makefile

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ UTESTBIN=openblas_utest
88

99
include $(TOPDIR)/Makefile.system
1010

11-
OBJS=utest_main.o test_amax.o test_fork.o test_rotmg.o
12-
#test_rot.o test_swap.o test_axpy.o test_dotu.o test_rotmg.o test_dsdot.o test_fork.o
11+
OBJS=utest_main.o test_amax.o test_rotmg.o
12+
#test_rot.o test_swap.o test_axpy.o test_dotu.o test_dsdot.o test_fork.o
1313

1414
ifneq ($(NO_LAPACK), 1)
15-
OBJS += test_potrs.o
15+
#OBJS += test_potrs.o
16+
endif
17+
18+
ifndef OS_WINDOWS
19+
OBJS += test_fork.o
20+
else
21+
ifdef OS_CYGWIN_NT
22+
OBJS += test_fork.o
23+
endif
1624
endif
1725

1826
all : run_test

0 commit comments

Comments
 (0)