Skip to content

Commit f590468

Browse files
authored
Copy generic Makefile for wasm laswp
1 parent cd47770 commit f590468

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

lapack/laswp/wasm/Makefile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
TOPDIR = ../../..
2+
include ../../../Makefile.system
3+
4+
ifeq ($(DYNAMIC_ARCH), 1)
5+
LASWP = ../generic/laswp_k_4.c
6+
ZLASWP = ../generic/zlaswp_k_4.c
7+
endif
8+
9+
ifndef LASWP
10+
LASWP = ../generic/laswp_k.c
11+
endif
12+
13+
ifndef ZLASWP
14+
ZLASWP = ../generic/zlaswp_k.c
15+
endif
16+
17+
include ../generic/Makefile

0 commit comments

Comments
 (0)