blob: 60e1f312244706761f0b1a59350c823817800728 [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
31obj:
32ifeq ($(TARGET), X64_INTEL_HASWELL)
33 ( cd avx2; $(MAKE) obj)
34 ( cd avx; $(MAKE) obj)
35 ( cd c99; $(MAKE) obj)
36endif
37
38ifeq ($(TARGET), X64_INTEL_SANDY_BRIDGE)
39 ( cd avx; $(MAKE) obj)
40 ( cd c99; $(MAKE) obj)
41endif
42
43ifeq ($(TARGET), X64_INTEL_CORE)
44 ( cd sse3; $(MAKE) obj)
45 ( cd c99; $(MAKE) obj)
46endif
47
48ifeq ($(TARGET), X64_AMD_BULLDOZER)
49 ( cd fma; $(MAKE) obj)
50 ( cd c99; $(MAKE) obj)
51endif
52
53ifeq ($(TARGET), ARMV8A_ARM_CORTEX_A57)
54 ( cd armv8a; $(MAKE) obj)
55 ( cd c99; $(MAKE) obj)
56endif
57
58ifeq ($(TARGET), ARMV7A_ARM_CORTEX_A15)
59 ( cd armv7a; $(MAKE) obj)
60 ( cd c99; $(MAKE) obj)
61endif
62
63ifeq ($(TARGET), GENERIC)
64 ( cd c99; $(MAKE) obj)
65endif
66
67clean:
68 make -C avx2 clean
69 make -C avx clean
70 make -C sse3 clean
71 make -C fma clean
72 make -C armv8a clean
73 make -C armv7a clean
74 make -C c99 clean
75