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