-
Notifications
You must be signed in to change notification settings - Fork 976
/
Makefile.am
39 lines (29 loc) · 1.02 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
## Process this file with automake to produce Makefile.in
SUBDIRS = lib src
AM_EXTRA_RECURSIVE_TARGETS = check-valgrind
ACLOCAL_AMFLAGS = -I m4
dist_doc_DATA = docs/stellar-core_example.cfg \
docs/stellar-core_standalone.cfg \
docs/stellar-core_testnet.cfg docs/software/admin.md \
docs/software/commands.md
include $(top_srcdir)/common.mk
.PHONY: always
always:
@:
if USE_CLANG_FORMAT
format: always
cd src && $(MAKE) $(AM_MAKEFLAGS) $@
endif # USE_CLANG_FORMAT
if USE_AFL_FUZZ
fuzz-testcases fuzz fuzz-clean: all
cd src && $(MAKE) $(AM_MAKEFLAGS) $@
endif # USE_AFL_FUZZ
EXTRA_DIST = stellar-core.supp test/testnet/multitail.conf \
test/testnet/run-test.sh README.md make-mks
@VALGRIND_CHECK_RULES@
VALGRIND_FLAGS = --num-callers=30 --trace-children=yes \
--trace-children-skip=hostname,aws,gcutil,gcloud,azure,node,python
VALGRIND_SUPPRESSIONS_FILES = stellar-core.supp
maintainer-clean-local:
cd $(srcdir) && rm -rf `sed -ne 's!^/!!p' .gitignore` *~ .gitignore~
CLEANFILES = test-suite.log .gitignore~ *~