forked from lttng/lttng-ust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
43 lines (32 loc) · 777 Bytes
/
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
40
41
42
43
ACLOCAL_AMFLAGS = -I config
SUBDIRS = . include snprintf libringbuffer liblttng-ust-comm \
liblttng-ust \
liblttng-ust-ctl \
liblttng-ust-fd \
liblttng-ust-fork \
liblttng-ust-libc-wrapper \
liblttng-ust-cyg-profile \
tools
if HAVE_DLINFO
SUBDIRS += liblttng-ust-dl
endif
if BUILD_JNI_INTERFACE
SUBDIRS += liblttng-ust-java
endif
if BUILD_JAVA_AGENT
SUBDIRS += liblttng-ust-java-agent
endif
if BUILD_PYTHON_AGENT
SUBDIRS += python-lttngust \
liblttng-ust-python-agent
endif
SUBDIRS += tests doc
#temporarily disabled
# liblttng-ust-malloc
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = lttng-ust.pc
dist_doc_DATA = README.md ChangeLog
dist_noinst_DATA = CodingStyle
check-loop:
cd tests && $(MAKE) $(AM_MAKEFLAGS) check-loop
.PHONY: check-loop