* 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
39 lines
947 B
Makefile
39 lines
947 B
Makefile
TOPSRCDIR = ../..
|
|
include $(TOPSRCDIR)/make.inc
|
|
|
|
.SUFFIXES: .c .o
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -I. -I../include -c -o $@ $<
|
|
|
|
.PHONY: all
|
|
all: xexample_DGESV_rowmajor \
|
|
xexample_DGESV_colmajor \
|
|
xexample_DGELS_rowmajor \
|
|
xexample_DGELS_colmajor
|
|
|
|
LIBRARIES = $(LAPACKELIB) $(LAPACKLIB) $(BLASLIB)
|
|
|
|
# Double Precision Examples
|
|
xexample_DGESV_rowmajor: example_DGESV_rowmajor.o lapacke_example_aux.o $(LIBRARIES)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
./$@
|
|
|
|
xexample_DGESV_colmajor: example_DGESV_colmajor.o lapacke_example_aux.o $(LIBRARIES)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
./$@
|
|
|
|
xexample_DGELS_rowmajor: example_DGELS_rowmajor.o lapacke_example_aux.o $(LIBRARIES)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
./$@
|
|
|
|
xexample_DGELS_colmajor: example_DGELS_colmajor.o lapacke_example_aux.o $(LIBRARIES)
|
|
$(FC) $(FFLAGS) $(LDFLAGS) -o $@ $^
|
|
./$@
|
|
|
|
.PHONY: clean cleanobj cleanexe
|
|
clean: cleanobj cleanexe
|
|
cleanobj:
|
|
rm -f *.o
|
|
cleanexe:
|
|
rm -f x*
|