| 1 | ACLOCAL_AMFLAGS = -I m4 |
| 2 | |
| 3 | SUBDIRS = . include snprintf libringbuffer liblttng-ust-comm \ |
| 4 | liblttng-ust \ |
| 5 | liblttng-ust-ctl \ |
| 6 | liblttng-ust-fd \ |
| 7 | liblttng-ust-fork \ |
| 8 | liblttng-ust-libc-wrapper \ |
| 9 | liblttng-ust-cyg-profile \ |
| 10 | tools |
| 11 | |
| 12 | if HAVE_DLINFO |
| 13 | SUBDIRS += liblttng-ust-dl |
| 14 | endif |
| 15 | |
| 16 | if BUILD_JNI_INTERFACE |
| 17 | SUBDIRS += liblttng-ust-java |
| 18 | endif |
| 19 | |
| 20 | if BUILD_JAVA_AGENT |
| 21 | SUBDIRS += liblttng-ust-java-agent |
| 22 | endif |
| 23 | |
| 24 | if BUILD_PYTHON_AGENT |
| 25 | SUBDIRS += python-lttngust \ |
| 26 | liblttng-ust-python-agent |
| 27 | endif |
| 28 | |
| 29 | SUBDIRS += tests doc |
| 30 | |
| 31 | #temporarily disabled |
| 32 | # liblttng-ust-malloc |
| 33 | |
| 34 | pkgconfigdir = $(libdir)/pkgconfig |
| 35 | pkgconfig_DATA = lttng-ust.pc lttng-ust-ctl.pc |
| 36 | |
| 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 |
| 49 | |
| 50 | check-loop: |
| 51 | cd tests && $(MAKE) $(AM_MAKEFLAGS) check-loop |
| 52 | .PHONY: check-loop |