From 95aedfa0ffd57d02cc271d579ed32a56ab6758a5 Mon Sep 17 00:00:00 2001 From: wernsaar Date: Sun, 3 Nov 2013 11:19:32 +0100 Subject: [PATCH] added missing file arm/Makefile in lapack/laswp --- lapack/laswp/arm/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 lapack/laswp/arm/Makefile diff --git a/lapack/laswp/arm/Makefile b/lapack/laswp/arm/Makefile new file mode 100644 index 0000000..434c82a --- /dev/null +++ b/lapack/laswp/arm/Makefile @@ -0,0 +1,33 @@ +TOPDIR = ../../.. +include ../../../Makefile.system + +ifeq ($(CORE), CORE2) +LASWP = ../generic/laswp_k_2.c +ZLASWP = ../generic/zlaswp_k_2.c +endif + +ifeq ($(CORE), OPTERON) +LASWP = ../generic/laswp_k_1.c +ZLASWP = ../generic/zlaswp_k_1.c +endif + +ifeq ($(CORE), PRESCOTT) +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 + +ifndef ZLASWP +ZLASWP = ../generic/zlaswp_k.c +endif + +include ../generic/Makefile + -- 2.7.4