-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
50 lines (47 loc) · 1.35 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
# Copyright 2014-2022 Will Cunningham
#
# This file is part of FastMath.
#
# Licensed under the GNU General Public License 3.0 (the "License").
# A copy of the License may be obtained with this software package or at
#
# https://www.gnu.org/licenses/gpl-3.0.en.html
#
# Use of this file is prohibited except in compliance with the License. Any
# modifications or derivative works of this file must retain this copyright
# notice, and modified files must contain a notice indicating that they have
# been altered from the originals.
#
# FastMath 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 License for more details.
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = --install
sourcedir = include/fastmath
pkginclude_HEADERS = \
$(sourcedir)/config.h \
$(sourcedir)/fastapprox.h \
$(sourcedir)/fastbitset.h \
$(sourcedir)/fastmath.h \
$(sourcedir)/integration.h \
$(sourcedir)/mersenne.h \
$(sourcedir)/nint.h \
$(sourcedir)/printcolor.h \
$(sourcedir)/progressbar.h \
$(sourcedir)/stopwatch.h \
$(sourcedir)/resources.h
distclean-local:
rm -rf $(top_builddir)/{\
autom4te.cache,\
aclocal.m4,\
AUTHORS,\
ChangeLog,\
configure,\
configure~,\
install-sh,\
Makefile.in,\
missing,\
NEWS,\
$(sourcedir)/config.h.in~,\
$(sourcedir)/stamp-h1\
}