18 lines
349 B
Makefile
18 lines
349 B
Makefile
include ../../make.inc
|
|
|
|
all: cblas_ex1 cblas_ex2
|
|
|
|
cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
|
|
$(LOADER) $(LOADOPTS) -o $@ $^
|
|
cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
|
|
$(LOADER) $(LOADOPTS) -o $@ $^
|
|
|
|
clean: cleanobj cleanexe
|
|
cleanobj:
|
|
rm -f *.o
|
|
cleanexe:
|
|
rm -f cblas_ex1 cblas_ex2
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -I../include -c -o $@ $<
|