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.

Makefile 428 B

1234567891011121314151617181920212223242526
  1. UTEST_CHECK = 1
  2. TOPDIR = ..
  3. UTESTBIN=openblas_utest
  4. .PHONY : all
  5. .NOTPARALLEL : all run_test $(UTESTBIN)
  6. include $(TOPDIR)/Makefile.system
  7. OBJS=utest_main.o test_amax.o
  8. #test_rot.o test_swap.o test_axpy.o test_dotu.o test_rotmg.o test_dsdot.o test_fork.o
  9. all : run_test
  10. $(UTESTBIN): $(OBJS)
  11. $(CC) $(CFLAGS) -o $@ $^ ../$(LIBNAME) $(FEXTRALIB)
  12. run_test: $(UTESTBIN)
  13. ./$(UTESTBIN)
  14. clean:
  15. -rm -f *.o $(UTESTBIN)
  16. libs: