You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- UTEST_CHECK = 1
- TOPDIR = ..
-
- UTESTBIN=openblas_utest
-
- .PHONY : all
- .NOTPARALLEL : all run_test $(UTESTBIN)
-
- include $(TOPDIR)/Makefile.system
-
- OBJS=utest_main.o test_amax.o
- #test_rot.o test_swap.o test_axpy.o test_dotu.o test_rotmg.o test_dsdot.o test_fork.o
-
- all : run_test
-
- $(UTESTBIN): $(OBJS)
- $(CC) $(CFLAGS) -o $@ $^ ../$(LIBNAME) $(FEXTRALIB)
-
- run_test: $(UTESTBIN)
- ./$(UTESTBIN)
-
- clean:
- -rm -f *.o $(UTESTBIN)
-
- libs:
|