X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=converter%2FMakefile.am;h=aba3333dc29ba06ed3f622b1a5f8ec288cf6e703;hp=b836d248ada5b5fd4d8d278c279765244f3319ba;hb=3b8884283f8c90195bd231cad3f3e115d006c6fd;hpb=e7c058b4112fd7120ed4e63d7cd2033a98eead1d diff --git a/converter/Makefile.am b/converter/Makefile.am index b836d248..aba3333d 100644 --- a/converter/Makefile.am +++ b/converter/Makefile.am @@ -1,34 +1,43 @@ -AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -lpopt +AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include +AM_LDFLAGS = -lpopt bin_PROGRAMS = babeltrace babeltrace-log -lib_LTLIBRARIES = libbabeltrace.la - -libbabeltrace_la_SOURCES = \ - babeltrace-lib.c - -libbabeltrace_la_LIBADD = \ - $(top_builddir)/types/libbabeltrace_types.la \ - $(top_builddir)/lib/libprio_heap.la - babeltrace_SOURCES = \ babeltrace.c # -Wl,--no-as-needed is needed for recent gold linker who seems to think # it knows better and considers libraries with constructors having -# side-effects as dead code. Note: we put plugin dependencies on the -# executable rather than the library because libtool does not seem to -# issue the LDFLAGS before the rpaths, which makes it useless. -babeltrace_LDFLAGS = -Wl,--no-as-needed +# side-effects as dead code. +babeltrace_LDFLAGS = $(LD_NO_AS_NEEDED) babeltrace_LDADD = \ - libbabeltrace.la \ - $(top_builddir)/formats/libbabeltrace_registry.la \ - $(top_builddir)/formats/ctf/libctf.la \ - $(top_builddir)/formats/ctf-text/libctf-text.la \ - $(top_builddir)/formats/bt-dummy/libbt-dummy.la + $(top_builddir)/lib/libbabeltrace.la \ + $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ + $(top_builddir)/compat/libcompat.la \ + $(top_builddir)/formats/ctf-text/libbabeltrace-ctf-text.la \ + $(top_builddir)/formats/ctf-metadata/libbabeltrace-ctf-metadata.la \ + $(top_builddir)/formats/bt-dummy/libbabeltrace-dummy.la \ + $(top_builddir)/formats/lttng-live/libbabeltrace-lttng-live.la + +if ENABLE_DEBUGINFO +babeltrace_LDADD += $(top_builddir)/lib/libdebuginfo.la +endif babeltrace_log_SOURCES = babeltrace-log.c babeltrace_log_LDADD = \ - $(top_builddir)/formats/libbabeltrace_registry.la \ - $(top_builddir)/formats/ctf/libctf.la + $(top_builddir)/lib/libbabeltrace.la \ + $(top_builddir)/formats/ctf/libbabeltrace-ctf.la \ + $(top_builddir)/compat/libcompat.la + +if BABELTRACE_BUILD_WITH_LIBUUID +babeltrace_log_LDADD += -luuid +endif +if BABELTRACE_BUILD_WITH_LIBC_UUID +babeltrace_log_LDADD += -lc +endif + +if BABELTRACE_BUILD_WITH_MINGW +babeltrace_log_LDADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread +babeltrace_LDADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread +endif