16 lines
345 B
Makefile
16 lines
345 B
Makefile
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
|