Complete change of the source directory tree
[lttng-tools.git] / src / common / Makefile.am
1 AM_CPPFLAGS =
2
3 SUBDIRS = hashtable kernel-ctl sessiond-comm kernel-consumer ust-consumer
4
5 AM_CFLAGS = -fno-strict-aliasing
6
7 noinst_LTLIBRARIES = libcommon.la
8
9 libcommon_la_SOURCES = runas.c runas.h
10
11 # Consumer library
12 noinst_LTLIBRARIES += libconsumer.la
13
14 libconsumer_la_SOURCES = consumer.c
15
16 libconsumer_la_LIBADD = \
17 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
18 $(top_builddir)/src/common/kernel-consumer/libkernel-consumer.la \
19 $(top_builddir)/src/common/hashtable/libhashtable.la
20
21 if HAVE_LIBLTTNG_UST_CTL
22 libconsumer_la_LIBADD += \
23 $(top_builddir)/src/common/ust-consumer/libust-consumer.la
24 endif
This page took 0.031977 seconds and 6 git commands to generate.