Refs #130 Fixed laswp building bug with DYNAMIC_ARCH=1.

This commit is contained in:
Zhang Xianyi 2012-08-09 20:36:18 +08:00
parent 1b056c5328
commit 7bd1834d59
2 changed files with 10 additions and 0 deletions

View File

@ -16,6 +16,11 @@ LASWP = ../generic/laswp_k_1.c
ZLASWP = ../generic/zlaswp_k_1.c
endif
ifeq ($(DYNAMIC_ARCH), 1)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.c
endif
ifndef LASWP
LASWP = ../generic/laswp_k.c
endif

View File

@ -21,6 +21,11 @@ LASWP = ../generic/laswp_k_1.c
ZLASWP = ../generic/zlaswp_k_1.c
endif
ifeq ($(DYNAMIC_ARCH), 1)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.c
endif
ifndef LASWP
LASWP = ../generic/laswp_k.c
endif