Skip to content

Commit 8dece9d

Browse files
author
Kirana Bergstrom
committed
Reverted Makefile to before nancheck
1 parent 338a668 commit 8dece9d

1 file changed

Lines changed: 16 additions & 2 deletions

File tree

LAPACKE/example/Makefile

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,26 @@
11
include ../../make.inc
22

3-
all: test_nancheck_DGELS
3+
all: xexample_DGESV_rowmajor \
4+
xexample_DGESV_colmajor \
5+
xexample_DGELS_rowmajor \
6+
xexample_DGELS_colmajor
47

58
LIBRARIES = ../../$(LAPACKELIB) ../../$(LAPACKLIB) $(BLASLIB)
69

710
# Double Precision Examples
11+
xexample_DGESV_rowmajor: example_DGESV_rowmajor.o lapacke_example_aux.o $(LIBRARIES)
12+
$(LOADER) $(LOADOPTS) -o $@ $^
13+
./$@
14+
15+
xexample_DGESV_colmajor: example_DGESV_colmajor.o lapacke_example_aux.o $(LIBRARIES)
16+
$(LOADER) $(LOADOPTS) -o $@ $^
17+
./$@
18+
19+
xexample_DGELS_rowmajor: example_DGELS_rowmajor.o lapacke_example_aux.o $(LIBRARIES)
20+
$(LOADER) $(LOADOPTS) -o $@ $^
21+
./$@
822

9-
test_nancheck_DGELS: test_nancheck_DGELS.o lapacke_example_aux.o $(LIBRARIES)
23+
xexample_DGELS_colmajor: example_DGELS_colmajor.o lapacke_example_aux.o $(LIBRARIES)
1024
$(LOADER) $(LOADOPTS) -o $@ $^
1125
./$@
1226

0 commit comments

Comments
 (0)