-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile.am
88 lines (66 loc) · 2.52 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Copyright (c) 2011 FFLAS-FFPACK
# written by Brice Boyer (briceboyer) <[email protected]>
# adapted from LinBox configuration
#
# ========LICENCE========
# This file is part of the library FFLAS-FFPACK.
#
# FFLAS-FFPACK is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# ========LICENCE========
#/
ACLOCAL_AMFLAGS = -I macros
SUBDIRS= autotune fflas-ffpack tests doc benchmarks macros examples tutorials
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = fflas-ffpack.pc
# include_HEADERS=fflas-ffpack-config.h
#!@todo add examples dir XXX
docs:doc/fflas-ffpack-html/index.html
doc/fflas-ffpack-html/index.html:
(cd doc; ${MAKE} docs)
docs_dev:doc/fflas-ffpack-dev-html/index.html
doc/fflas-ffpack-dev-html/index.html:
(cd doc; ${MAKE} docs_dev)
autotune:
(cd autotune; ${MAKE} autotune)
perfpublisher: benchmarks/perfpublisher tests/perfpublisher
benchmarks/perfpublisher:
(cd benchmarks; ${MAKE} perfpublisher)
tests/perfpublisher:
(cd tests; ${MAKE} perfpublisher)
examples:
(cd examples; ${MAKE} examples)
tutorials:
(cd tutorials; ${MAKE} tutorials)
benchmarks:
(cd benchmarks; ${MAKE} benchmarks)
uninstall-hook:
(test -d "$(includedir)/fflas-ffpack" && rm -rf \
"$(mandir)/man1" "$(mandir)" \
"$(includedir)/fflas-ffpack/fflas" \
"$(includedir)/fflas-ffpack/fflas/fflas_fgemm" \
"$(includedir)/fflas-ffpack/ffpack" \
"$(includedir)/fflas-ffpack/field" \
"$(includedir)/fflas-ffpack/utils" \
"$(includedir)/fflas-ffpack/paladin" \
"$(includedir)/fflas-ffpack/interfaces" \
"$(includedir)/fflas-ffpack/interfaces/libs" \
"$(includedir)/fflas-ffpack/" "$(datarootdir)/" ) || \
true
.PHONY:tutorials examples benchmarks autotune
bin_SCRIPTS=fflas-ffpack-config
git:
git commit -a; git pull; git push
EXTRA_DIST= README.md
VERSION=2.5.1alpha0