blob: 507990563c81a6ef51674681ab1f5ea97f247e93 [file] [log] [blame]
dlvl = ./.
include $(dlvl)/../Makefile.in
all: example1 example2
example1:
$(CC) -c $(CFLAGS) -I../src cblas_example1.c
$(LOADER) -o cblas_ex1 cblas_example1.o $(CBLIB) $(BLLIB)
example2:
$(CC) -c $(CFLAGS) -I../src cblas_example2.c
$(LOADER) -o cblas_ex2 cblas_example2.o $(CBLIB) $(BLLIB)
cleanall:
rm -f *.o cblas_ex1 cblas_ex2