You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
15 lines
345 B
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
|
|
|