blob: 507990563c81a6ef51674681ab1f5ea97f247e93 [file] [log] [blame]
Tim Murray81253e92015-02-17 11:29:36 -08001dlvl = ./.
2include $(dlvl)/../Makefile.in
3
4all: example1 example2
5
6example1:
7 $(CC) -c $(CFLAGS) -I../src cblas_example1.c
8 $(LOADER) -o cblas_ex1 cblas_example1.o $(CBLIB) $(BLLIB)
9
10example2:
11 $(CC) -c $(CFLAGS) -I../src cblas_example2.c
12 $(LOADER) -o cblas_ex2 cblas_example2.o $(CBLIB) $(BLLIB)
13
14cleanall:
15 rm -f *.o cblas_ex1 cblas_ex2