23 lines
344 B
Makefile
23 lines
344 B
Makefile
UTEST_CHECK = 1
|
|
TOPDIR = ..
|
|
include $(TOPDIR)/Makefile.system
|
|
|
|
TARGET=openblas_utest
|
|
CUNIT_LIB=/usr/local/lib/libcunit.a
|
|
|
|
OBJS=main.o test_rot.o test_swap.o test_axpy.o test_dotu.o
|
|
|
|
all : run_test
|
|
|
|
$(TARGET): $(OBJS)
|
|
$(CC) -o $@ $^ ../$(LIBNAME) $(CUNIT_LIB) $(EXTRALIB)
|
|
|
|
run_test: $(TARGET)
|
|
./$(TARGET)
|
|
|
|
clean:
|
|
rm -f *.o $(TARGET)
|
|
|
|
libs:
|
|
|