Commit | Line | Data |
---|---|---|
9d16b343 MJ |
1 | # SPDX-License-Identifier: GPL-2.0-only |
2 | ||
8acbe07d | 3 | if HAVE_LIBLTTNG_UST_CTL |
eb7277b0 FD |
4 | SUBDIRS = \ |
5 | before-after \ | |
6 | blocking \ | |
7 | buffers-pid \ | |
8 | clock-override \ | |
9 | daemon \ | |
10 | exit-fast \ | |
11 | fork \ | |
12 | getcpu-override \ | |
13 | high-throughput \ | |
14 | java-jul \ | |
15 | java-log4j \ | |
16 | libc-wrapper \ | |
17 | linking \ | |
18 | low-throughput \ | |
19 | multi-lib \ | |
20 | multi-session \ | |
21 | namespaces \ | |
22 | nprocesses \ | |
23 | overlap \ | |
24 | periodical-metadata-flush \ | |
25 | rotation-destroy-flush \ | |
26 | type-declarations | |
65385a82 MJ |
27 | |
28 | if HAVE_OBJCOPY | |
eb7277b0 FD |
29 | SUBDIRS += \ |
30 | baddr-statedump \ | |
31 | ust-dl | |
65385a82 | 32 | endif |
355f483d | 33 | |
eb7277b0 FD |
34 | EXTRA_DIST = \ |
35 | test_event_basic \ | |
36 | test_event_perf \ | |
37 | test_event_tracef | |
53a80697 | 38 | |
c83e7ca0 DG |
39 | all-local: |
40 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
41 | for script in $(EXTRA_DIST); do \ | |
42 | cp -f $(srcdir)/$$script $(builddir); \ | |
43 | done; \ | |
44 | fi | |
45 | ||
46 | clean-local: | |
47 | @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ | |
48 | for script in $(EXTRA_DIST); do \ | |
49 | rm -f $(builddir)/$$script; \ | |
50 | done; \ | |
51 | fi | |
52 | ||
8acbe07d | 53 | endif |