* Update make.inc entries for LAPACK 3.9.0 Reference-LAPACK PR 347 changed some variable names and relative paths * Update LAPACK to 3.9.0 * Add new functions from LAPACK 3.9.0 * Add new functions from LAPACK 3.9.0 * Restore LOADER command as it makes it easier to specify pthread as needed * Restore LOADER * Restore EIG/LIN prefixes in cmdbase * add binary path to lapack_testing.py call * Restore OpenMP version check * Restore OpenMP version check * Restore fix for out-of-bounds array accesses from #2096
22 lines
445 B
Makefile
22 lines
445 B
Makefile
TOPSRCDIR = ../..
|
|
include $(TOPSRCDIR)/make.inc
|
|
|
|
.SUFFIXES: .c .o
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -I../include -c -o $@ $<
|
|
|
|
.PHONY: all
|
|
all: cblas_ex1 cblas_ex2
|
|
|
|
cblas_ex1: cblas_example1.o $(CBLASLIB) $(BLASLIB)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
cblas_ex2: cblas_example2.o $(CBLASLIB) $(BLASLIB)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
|
|
.PHONY: clean cleanobj cleanexe
|
|
clean: cleanobj cleanexe
|
|
cleanobj:
|
|
rm -f *.o
|
|
cleanexe:
|
|
rm -f cblas_ex1 cblas_ex2
|