-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.am
More file actions
73 lines (52 loc) · 2.19 KB
/
Makefile.am
File metadata and controls
73 lines (52 loc) · 2.19 KB
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
##############################################################################
# #
# This file is part of factoradic_c_utils. #
# #
# factoradic_c_utils is free software: you can redistribute it and/or #
# modify it under the terms of the GNU General Public License as published #
# by the Free Software Foundation, either version 3 of the License, #
# or (at your option) any later version. #
# #
# factoradic_c_utils 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 General #
# Public License for more details. #
# #
# You should have received a copy of the GNU General Public License along #
# with factoradic_c_utils. If not, see <https://www.gnu.org/licenses/>. #
# #
##############################################################################
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -Wall -Wextra
LDADD = -lgmp
bin_PROGRAMS = dec2fact fact2dec
COMMON_SRC = \
src/options.c src/options.h \
src/globals.c \
src/common.h
dec2fact_SOURCES = \
$(COMMON_SRC) \
src/dec2fact.c
fact2dec_SOURCES = \
$(COMMON_SRC) \
src/fact2dec.c
TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
$(top_srcdir)/build-aux/tap-driver.sh
TESTS_ENVIRONMENT = builddir=$(builddir)
SHELLTESTS = \
tests/check_dec2fact \
tests/check_fact2dec
TESTS = $(SHELLTESTS)
EXTRA_DIST = \
$(SHELLTESTS) \
tests/test_helper.sh \
m4/gnulib/gnulib-cache.m4 \
README.md
benchmark:
./benchmark.sh 2>&1 | tee benchmark.txt
#@# GNUlib stuff
MOSTLYCLEANFILES =
noinst_LIBRARIES =
BUILT_SOURCES =
include lib/gnulib/Makefile.gnulib
SUBDIRS = tests/gnulib