From: David Goulet Date: Fri, 20 Jan 2012 20:37:52 +0000 (-0500) Subject: Add missing headers for make dist X-Git-Tag: v2.0-pre18~17 X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=commitdiff_plain;h=1c39da610b4b1e47a50ab51d9cdfc56d895f2b73 Add missing headers for make dist Signed-off-by: David Goulet --- diff --git a/src/bin/lttng-consumerd/Makefile.am b/src/bin/lttng-consumerd/Makefile.am index 25cd6e922..470c8c17a 100644 --- a/src/bin/lttng-consumerd/Makefile.am +++ b/src/bin/lttng-consumerd/Makefile.am @@ -1,8 +1,8 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src +AM_CPPFLAGS = bin_PROGRAMS = lttng-consumerd -lttng_consumerd_SOURCES = lttng-consumerd.c +lttng_consumerd_SOURCES = lttng-consumerd.c lttng-consumerd.h lttng_consumerd_LDADD = \ $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \ diff --git a/src/bin/lttng-sessiond/Makefile.am b/src/bin/lttng-sessiond/Makefile.am index e824d4939..e39207426 100644 --- a/src/bin/lttng-sessiond/Makefile.am +++ b/src/bin/lttng-sessiond/Makefile.am @@ -1,5 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ - -DINSTALL_BIN_PATH=\""$(bindir)"\" \ +AM_CPPFLAGS = -DINSTALL_BIN_PATH=\""$(bindir)"\" \ -DINSTALL_LIB_PATH=\""$(libdir)"\" AM_CFLAGS = -fno-strict-aliasing diff --git a/src/bin/lttng/Makefile.am b/src/bin/lttng/Makefile.am index 34c47dfcf..28673a910 100644 --- a/src/bin/lttng/Makefile.am +++ b/src/bin/lttng/Makefile.am @@ -1,5 +1,4 @@ -AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/src \ - -DINSTALL_BIN_PATH=\""$(bindir)"\" +AM_CPPFLAGS = -DINSTALL_BIN_PATH=\""$(bindir)"\" bin_PROGRAMS = lttng diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 84c0b16a1..a8125bc40 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -4,6 +4,8 @@ SUBDIRS = hashtable kernel-ctl sessiond-comm kernel-consumer ust-consumer AM_CFLAGS = -fno-strict-aliasing +noinst_HEADERS = lttng-share.h lttngerr.h lttng-kernel.h + noinst_LTLIBRARIES = libcommon.la libcommon_la_SOURCES = runas.c runas.h @@ -11,7 +13,7 @@ libcommon_la_SOURCES = runas.c runas.h # Consumer library noinst_LTLIBRARIES += libconsumer.la -libconsumer_la_SOURCES = consumer.c +libconsumer_la_SOURCES = consumer.c consumer.h libconsumer_la_LIBADD = \ $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \ diff --git a/src/common/kernel-consumer/Makefile.am b/src/common/kernel-consumer/Makefile.am index b914bf16c..655f77ef0 100644 --- a/src/common/kernel-consumer/Makefile.am +++ b/src/common/kernel-consumer/Makefile.am @@ -1,7 +1,7 @@ # Kernel consumer library noinst_LTLIBRARIES = libkernel-consumer.la -libkernel_consumer_la_SOURCES = kernel-consumer.c +libkernel_consumer_la_SOURCES = kernel-consumer.c kernel-consumer.h libkernel_consumer_la_LIBADD = \ $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la diff --git a/src/common/kernel-ctl/Makefile.am b/src/common/kernel-ctl/Makefile.am index 1c71c5ce9..a56a0218b 100644 --- a/src/common/kernel-ctl/Makefile.am +++ b/src/common/kernel-ctl/Makefile.am @@ -2,4 +2,4 @@ AM_CPPFLAGS = -I$(top_srcdir)/include noinst_LTLIBRARIES = libkernel-ctl.la -libkernel_ctl_la_SOURCES = kernel-ctl.c kernel-ioctl.h +libkernel_ctl_la_SOURCES = kernel-ctl.c kernel-ctl.h kernel-ioctl.h diff --git a/src/common/ust-consumer/Makefile.am b/src/common/ust-consumer/Makefile.am index 478aae793..798ad9aa6 100644 --- a/src/common/ust-consumer/Makefile.am +++ b/src/common/ust-consumer/Makefile.am @@ -1,7 +1,7 @@ if HAVE_LIBLTTNG_UST_CTL noinst_LTLIBRARIES = libust-consumer.la -libust_consumer_la_SOURCES = ust-consumer.c +libust_consumer_la_SOURCES = ust-consumer.c ust-consumer.h libust_consumer_la_LIBADD = -llttng-ust-ctl