X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2FMakefile.am;h=8c5803494ad3697b959c075c6dcd5835619a125e;hp=ebf9b57ff938511d12091560a16c16ffa79c6a1c;hb=ce0b1d61919f37517a6212f7af2afe0fa1b1dcb0;hpb=d7ba13889c8692b14f99238ddf2721ed78df89d2 diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am index ebf9b57ff..8c5803494 100644 --- a/src/bin/Makefile.am +++ b/src/bin/Makefile.am @@ -1,7 +1,30 @@ +# SPDX-License-Identifier: GPL-2.0-only + ACLOCAL_AMFLAGS = -I config -SUBDIRS = lttng-consumerd \ - lttng \ - lttng-sessiond \ - lttng-relayd \ - lttng-crash +SUBDIRS = + +# Make sure to always distribute all folders +# since SUBDIRS is decided at configure time. +DIST_SUBDIRS = lttng-consumerd lttng lttng-sessiond lttng-relayd \ + lttng-crash + +if BUILD_BIN_LTTNG +SUBDIRS += lttng +endif + +if BUILD_BIN_LTTNG_CONSUMERD +SUBDIRS += lttng-consumerd +endif + +if BUILD_BIN_LTTNG_CRASH +SUBDIRS += lttng-crash +endif + +if BUILD_BIN_LTTNG_RELAYD +SUBDIRS += lttng-relayd +endif + +if BUILD_BIN_LTTNG_SESSIOND +SUBDIRS += lttng-sessiond +endif