Browse Source

Merge current Makefile from develop

tags/v0.3.0
Martin Kroeker GitHub 7 years ago
parent
commit
632b8e0f05
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 3 deletions
  1. +11
    -3
      utest/Makefile

+ 11
- 3
utest/Makefile View File

@@ -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


Loading…
Cancel
Save