mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-05-01 22:18:10 +08:00
23 lines
299 B
Makefile
23 lines
299 B
Makefile
AR = ar rcv
|
|
RANLIB = ranlib
|
|
|
|
HEADERS = blas.h blasp.h
|
|
FILES = dnrm2.o daxpy.o ddot.o dscal.o
|
|
|
|
CFLAGS = $(OPTFLAGS)
|
|
FFLAGS = $(OPTFLAGS)
|
|
|
|
blas: $(FILES) $(HEADERS)
|
|
$(AR) blas.a $(FILES)
|
|
$(RANLIB) blas.a
|
|
|
|
clean:
|
|
- rm -f *.o
|
|
- rm -f *.a
|
|
- rm -f *~
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -fpic -c $*.c
|
|
|
|
|