blob: 6e9ea7b7faa6e71e877e8ca2007ffd68fb57e563 [file] [log] [blame]
Austin Schuh9a24b372018-01-28 16:12:29 -08001###################################################################################################
2# #
3# This file is part of BLASFEO. #
4# #
5# BLASFEO -- BLAS For Embedded Optimization. #
6# Copyright (C) 2016-2017 by Gianluca Frison. #
7# Developed at IMTEK (University of Freiburg) under the supervision of Moritz Diehl. #
8# All rights reserved. #
9# #
10# HPMPC is free software; you can redistribute it and/or #
11# modify it under the terms of the GNU Lesser General Public #
12# License as published by the Free Software Foundation; either #
13# version 2.1 of the License, or (at your option) any later version. #
14# #
15# HPMPC is distributed in the hope that it will be useful, #
16# but WITHOUT ANY WARRANTY; without even the implied warranty of #
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #
18# See the GNU Lesser General Public License for more details. #
19# #
20# You should have received a copy of the GNU Lesser General Public #
21# License along with HPMPC; if not, write to the Free Software #
22# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA #
23# #
24# Author: Gianluca Frison, giaf (at) dtu.dk #
25# gianluca.frison (at) imtek.uni-freiburg.de #
26# #
27###################################################################################################
28
29include ../../Makefile.rule
30
31OBJS =
32
33ifeq ($(LA), HIGH_PERFORMANCE)
34
35ifeq ($(TARGET), X64_INTEL_HASWELL)
36OBJS +=
37OBJS += kernel_sgetr_lib4.o
38endif
39
40ifeq ($(TARGET), X64_INTEL_SANDY_BRIDGE)
41OBJS +=
42OBJS += kernel_sgetr_lib4.o
43endif
44
45ifeq ($(TARGET), X64_INTEL_CORE)
46OBJS += kernel_dgecp_lib4.o kernel_dgetr_lib4.o
47OBJS += kernel_sgetr_lib4.o
48endif
49
50ifeq ($(TARGET), X64_AMD_BULLDOZER)
51OBJS += kernel_dgecp_lib4.o kernel_dgetr_lib4.o
52OBJS += kernel_sgetr_lib4.o
53endif
54
55ifeq ($(TARGET), ARMV8A_ARM_CORTEX_A57)
56OBJS += kernel_dgecp_lib4.o kernel_dgetr_lib4.o
57OBJS += kernel_sgetr_lib4.o
58endif
59
60ifeq ($(TARGET), ARMV7A_ARM_CORTEX_A15)
61OBJS += kernel_dgecp_lib4.o kernel_dgetr_lib4.o
62OBJS += kernel_sgetr_lib4.o
63endif
64
65ifeq ($(TARGET), GENERIC)
66OBJS += kernel_dgecp_lib4.o kernel_dgetr_lib4.o
67OBJS += kernel_sgetr_lib4.o
68endif
69
70else # LA_REFERENCE | LA_BLAS
71
72endif # LA choice
73
74obj: $(OBJS)
75
76clean:
77 rm -f *.o