tahoma2d/thirdparty/openblas/xianyi-OpenBLAS-e6e87a2/lapack/laswp/x86_64/Makefile
2016-03-24 02:47:04 +09:00

33 lines
564 B
Makefile

TOPDIR = ../../..
include ../../../Makefile.system
ifeq ($(CORE), PENRYN)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.c
endif
ifeq ($(CORE), CORE2)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.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
ifndef LASWP
LASWP = ../generic/laswp_k_1.c
endif
ifndef ZLASWP
ZLASWP = ../generic/zlaswp_k_1.c
endif
include ../generic/Makefile