Combine duplicated API/pretty-print timestamp code
[babeltrace.git] / converter / Makefile.am
... / ...
CommitLineData
1AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -lpopt
2
3bin_PROGRAMS = babeltrace babeltrace-log
4
5babeltrace_SOURCES = \
6 babeltrace.c
7
8# -Wl,--no-as-needed is needed for recent gold linker who seems to think
9# it knows better and considers libraries with constructors having
10# side-effects as dead code. Note: we put plugin dependencies on the
11# executable rather than the library because libtool does not seem to
12# issue the LDFLAGS before the rpaths, which makes it useless.
13babeltrace_LDFLAGS = -Wl,--no-as-needed
14babeltrace_LDADD = \
15 $(top_builddir)/lib/libbabeltrace.la \
16 $(top_builddir)/formats/ctf/libctf.la \
17 $(top_builddir)/formats/ctf/metadata/libctf-ast.la \
18 $(top_builddir)/formats/ctf-text/libctf-text.la \
19 $(top_builddir)/formats/bt-dummy/libbt-dummy.la
20
21babeltrace_log_SOURCES = babeltrace-log.c
22
23babeltrace_log_LDADD = \
24 $(top_builddir)/lib/libbabeltrace.la \
25 $(top_builddir)/formats/ctf/libctf.la
This page took 0.022198 seconds and 4 git commands to generate.