-
Notifications
You must be signed in to change notification settings - Fork 141
/
Copy pathMakefile.am
37 lines (32 loc) · 901 Bytes
/
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
# SPDX-FileCopyrightText: 2023 EfficiOS Inc.
#
# SPDX-License-Identifier: MIT
ACLOCAL_AMFLAGS=-I m4
SUBDIRS = include src doc tests extras
dist_doc_DATA = \
LICENSE.md \
README.md
EXTRA_DIST = \
CodingStyle.md \
lgpl-relicensing.md \
LICENSES/Autoconf-exception-2.0.txt \
LICENSES/BSD-2-Clause.txt \
LICENSES/CC0-1.0.txt \
LICENSES/CC-BY-4.0.txt \
LICENSES/FSFAP.txt \
LICENSES/GPL-2.0-only.txt \
LICENSES/GPL-2.0-or-later.txt \
LICENSES/LGPL-2.1-only.txt \
LICENSES/LGPL-2.1-or-later.txt \
LICENSES/LicenseRef-Autoconf-exception-macro.txt \
LICENSES/LicenseRef-Boehm-GC.txt \
LICENSES/MIT.txt
.PHONY: short_bench long_bench regtest check-loop
short_bench:
cd tests && $(MAKE) $(AM_MAKEFLAGS) short_bench
long_bench:
cd tests && $(MAKE) $(AM_MAKEFLAGS) long_bench
regtest:
cd tests && $(MAKE) $(AM_MAKEFLAGS) regtest
check-loop:
cd tests && $(MAKE) $(AM_MAKEFLAGS) check-loop