Add missing headers for make dist
authorDavid Goulet <dgoulet@efficios.com>
Fri, 20 Jan 2012 20:37:52 +0000 (15:37 -0500)
committerDavid Goulet <dgoulet@efficios.com>
Fri, 20 Jan 2012 20:37:52 +0000 (15:37 -0500)
Signed-off-by: David Goulet <dgoulet@efficios.com>
src/bin/lttng-consumerd/Makefile.am
src/bin/lttng-sessiond/Makefile.am
src/bin/lttng/Makefile.am
src/common/Makefile.am
src/common/kernel-consumer/Makefile.am
src/common/kernel-ctl/Makefile.am
src/common/ust-consumer/Makefile.am

index 25cd6e92279c7164379b07ce631ecc1bfefff410..470c8c17a1ac597c0d40b83f26f200895ac2f9c3 100644 (file)
@@ -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 \
index e824d4939105d135f2b9603c6aa255abde70827d..e3920742644e1a03b7583b8587f788bd344fd687 100644 (file)
@@ -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
index 34c47dfcfae4305ee4dd8a488a3e3f3b7c24a603..28673a910360627166943d1da20e2264999dcb7f 100644 (file)
@@ -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
 
index 84c0b16a13efcc054502e768fe8604f475da0533..a8125bc404407c44451297c30ff60f3d370a6775 100644 (file)
@@ -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 \
index b914bf16c1ec9a76e786d6df8876584b6e76b877..655f77ef0472b3a428a6d43c8f79a135d323d8c5 100644 (file)
@@ -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
index 1c71c5ce991b352542a7b2ff65bcaab7289de59c..a56a0218b290f718122795e292689004771b7248 100644 (file)
@@ -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
index 478aae79323993ba5e4805303fc72ece78a7a875..798ad9aa6606218f6844485be2cf6d719ebc6c9c 100644 (file)
@@ -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
 
This page took 0.028607 seconds and 5 git commands to generate.