Commit | Line | Data |
---|---|---|
093c3f9b | 1 | ACLOCAL_AMFLAGS = -I m4 |
89edbbc3 | 2 | |
394598c1 | 3 | SUBDIRS = . include snprintf libringbuffer liblttng-ust-comm \ |
69400ac4 MD |
4 | liblttng-ust \ |
5 | liblttng-ust-ctl \ | |
95e6d268 | 6 | liblttng-ust-fd \ |
69400ac4 | 7 | liblttng-ust-fork \ |
476037d9 | 8 | liblttng-ust-libc-wrapper \ |
70d654f2 | 9 | liblttng-ust-cyg-profile \ |
31ea1f6f | 10 | tools |
15612a0f | 11 | |
f9ff7aa4 RN |
12 | if HAVE_DLINFO |
13 | SUBDIRS += liblttng-ust-dl | |
14 | endif | |
15 | ||
d2869a26 | 16 | if BUILD_JNI_INTERFACE |
501f6777 CB |
17 | SUBDIRS += liblttng-ust-java |
18 | endif | |
19 | ||
20 | if BUILD_JAVA_AGENT | |
21 | SUBDIRS += liblttng-ust-java-agent | |
d2869a26 MD |
22 | endif |
23 | ||
c3e14096 | 24 | if BUILD_PYTHON_AGENT |
21ddb8ec MJ |
25 | SUBDIRS += python-lttngust \ |
26 | liblttng-ust-python-agent | |
c3e14096 DG |
27 | endif |
28 | ||
31ea1f6f | 29 | SUBDIRS += tests doc |
43e5396b | 30 | |
15612a0f | 31 | #temporarily disabled |
69400ac4 | 32 | # liblttng-ust-malloc |
4cf459a7 YB |
33 | |
34 | pkgconfigdir = $(libdir)/pkgconfig | |
a1acf2a6 | 35 | pkgconfig_DATA = lttng-ust.pc lttng-ust-ctl.pc |
336cc1ed | 36 | |
b9c0e605 MJ |
37 | dist_doc_DATA = \ |
38 | ChangeLog \ | |
39 | COPYING \ | |
40 | LICENSE \ | |
41 | README.md | |
42 | ||
43 | dist_noinst_DATA = \ | |
44 | CodingStyle \ | |
45 | CONTRIBUTING.md \ | |
46 | gpl-2.0.txt \ | |
47 | lgpl-2.1.txt \ | |
48 | mit-license.txt | |
f3c7428e MJ |
49 | |
50 | check-loop: | |
51 | cd tests && $(MAKE) $(AM_MAKEFLAGS) check-loop | |
52 | .PHONY: check-loop |