aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
blob: 507990563c81a6ef51674681ab1f5ea97f247e93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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