X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=converter%2FMakefile.am;h=3248d443fa1d92acd7904706e6585bac0395b1d8;hp=9443c2148848d681d1817ba462f11ac1c9b2f44a;hb=500634bebf68d5a018f2d9c36a104b8706f59818;hpb=e419579102094d83539d79ce6af83d9786d387ee diff --git a/converter/Makefile.am b/converter/Makefile.am index 9443c214..3248d443 100644 --- a/converter/Makefile.am +++ b/converter/Makefile.am @@ -1,4 +1,5 @@ -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 @@ -7,19 +8,31 @@ babeltrace_SOURCES = \ # -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. +# side-effects as dead code. babeltrace_LDFLAGS = -Wl,--no-as-needed babeltrace_LDADD = \ $(top_builddir)/lib/libbabeltrace.la \ - $(top_builddir)/formats/ctf/libctf.la \ - $(top_builddir)/formats/ctf/metadata/libctf-ast.la \ - $(top_builddir)/formats/ctf-text/libctf-text.la \ - $(top_builddir)/formats/bt-dummy/libbt-dummy.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 babeltrace_log_SOURCES = babeltrace-log.c babeltrace_log_LDADD = \ $(top_builddir)/lib/libbabeltrace.la \ - $(top_builddir)/formats/ctf/libctf.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