configure: standardize automake conditional names
[lttng-ust.git] / Makefile.am
1 # SPDX-License-Identifier: LGPL-2.1-only
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 SUBDIRS = . include snprintf libringbuffer liblttng-ust-comm \
6 libcounter \
7 libmsgpack \
8 liblttng-ust \
9 liblttng-ust-ctl \
10 liblttng-ust-fd \
11 liblttng-ust-fork \
12 liblttng-ust-libc-wrapper \
13 liblttng-ust-cyg-profile \
14 tools
15
16 if ENABLE_UST_DL
17 SUBDIRS += liblttng-ust-dl
18 endif
19
20 if ENABLE_JNI_INTERFACE
21 SUBDIRS += liblttng-ust-java
22 endif
23
24 if ENABLE_JAVA_AGENT
25 SUBDIRS += liblttng-ust-java-agent
26 endif
27
28 if ENABLE_PYTHON_AGENT
29 SUBDIRS += python-lttngust \
30 liblttng-ust-python-agent
31 endif
32
33 SUBDIRS += tests doc
34
35 pkgconfigdir = $(libdir)/pkgconfig
36 pkgconfig_DATA = lttng-ust.pc lttng-ust-ctl.pc
37
38 dist_doc_DATA = \
39 ChangeLog \
40 LICENSE \
41 README.md
42
43 dist_noinst_DATA = \
44 CodingStyle \
45 CONTRIBUTING.md \
46 LICENSES/BSD-2-Clause \
47 LICENSES/BSD-3-Clause \
48 LICENSES/GPL-2.0 \
49 LICENSES/GPL-3.0 \
50 LICENSES/LGPL-2.1 \
51 LICENSES/MIT
52
53 check-loop:
54 cd tests && $(MAKE) $(AM_MAKEFLAGS) check-loop
55 .PHONY: check-loop
This page took 0.033798 seconds and 5 git commands to generate.