fix API : deal with the optional underscore
[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.
11babeltrace_LDFLAGS = -Wl,--no-as-needed
12babeltrace_LDADD = \
13 $(top_builddir)/lib/libbabeltrace.la \
14 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \
15 $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la \
16 $(top_builddir)/formats/bt-dummy/libbabeltrace-dummy.la
17
18babeltrace_log_SOURCES = babeltrace-log.c
19
20babeltrace_log_LDADD = \
21 $(top_builddir)/lib/libbabeltrace.la \
22 $(top_builddir)/formats/ctf/libbabeltrace-ctf.la
This page took 0.022451 seconds and 4 git commands to generate.