Fix: Don't override user variables within the build system
[babeltrace.git] / cli / Makefile.am
1 PLUGINS_PATH = $(abs_top_builddir)/plugins
2 LTTNG_UTILS_PLUGIN_PATH =
3
4 if ENABLE_DEBUG_INFO
5 LTTNG_UTILS_PLUGIN_PATH += :$(PLUGINS_PATH)/lttng-utils
6 endif
7
8 if BABELTRACE_BUILD_WITH_MINGW
9 IN_TREE_PLUGIN_PATH := $(shell cygpath -pm "$(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)")
10 else
11 IN_TREE_PLUGIN_PATH = $(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)
12 endif
13
14 AM_CPPFLAGS += '-DCONFIG_IN_TREE_PLUGIN_PATH="$(IN_TREE_PLUGIN_PATH)"'
15 AM_LDFLAGS = -lpopt
16
17 bin_PROGRAMS = babeltrace.bin babeltrace-log.bin
18 noinst_PROGRAMS = babeltrace babeltrace-log
19
20 babeltrace_bin_SOURCES = \
21 babeltrace.c \
22 babeltrace-cfg.c \
23 babeltrace-cfg.h \
24 babeltrace-cfg-cli-args.c \
25 babeltrace-cfg-cli-args.h \
26 babeltrace-cfg-cli-args-connect.c \
27 babeltrace-cfg-cli-args-connect.h \
28 babeltrace-cfg-cli-args-default.h \
29 babeltrace-cfg-cli-args-default.c \
30 logging.c logging.h
31
32 # -Wl,--no-as-needed is needed for recent gold linker who seems to think
33 # it knows better and considers libraries with constructors having
34 # side-effects as dead code.
35 babeltrace_bin_LDFLAGS = $(LD_NO_AS_NEEDED)
36
37 # Add all the convenience libraries used by Babeltrace plugins and the
38 # library. They will be used when embedding plugins (BUILT_IN_PLUGINS),
39 # otherwise we're looking after multiple definitions of the same symbols if
40 # a plugin's archive (.a) includes the convenience library because
41 # we're using --whole-archive below (needed to make sure the linker does
42 # not discard the plugins since the CLI does not use their symbols
43 # directly).
44 babeltrace_bin_LDADD = \
45 $(top_builddir)/lib/libbabeltrace.la \
46 $(top_builddir)/compat/libcompat.la \
47 $(top_builddir)/common/libbabeltrace-common.la \
48 $(top_builddir)/logging/libbabeltrace-logging.la \
49 $(top_builddir)/plugins/libctfcopytrace/libctfcopytrace.la
50
51 if BUILT_IN_PLUGINS
52 # Takes a plugin name and outputs the needed LDFLAGS to embed it.
53 #
54 # The --whole-archive option is important here. From the GNU linker's
55 # documentation:
56 #
57 # For each archive mentioned on the command line after the
58 # --whole-archive option, include every object file in the archive in
59 # the link, rather than searching the archive for the required object
60 # files.
61 #
62 # In our case, we find the plugins thanks to special sections in the
63 # binary that are filled by plugin objects. If the linker discards those
64 # symbols because the CLI does not use them directly, the CLI reports
65 # no plugins found (plugins are effectively not embedded).
66 pluginarchive = -Wl,--whole-archive,$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a,--no-whole-archive
67
68 # Built-in plugins
69 babeltrace_bin_LDFLAGS += $(call pluginarchive,ctf)
70 babeltrace_bin_LDFLAGS += $(call pluginarchive,text)
71 babeltrace_bin_LDFLAGS += $(call pluginarchive,utils)
72
73 if ENABLE_DEBUG_INFO
74 babeltrace_bin_LDFLAGS += $(call pluginarchive,lttng-utils)
75 endif
76 endif
77
78 if BABELTRACE_BUILD_WITH_MINGW
79 babeltrace_bin_LDADD += -lws2_32 -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread
80 endif
81
82 # Only used for in-tree execution and tests
83 babeltrace_SOURCES = $(babeltrace_bin_SOURCES)
84 babeltrace_LDFLAGS = $(babeltrace_bin_LDFLAGS)
85 babeltrace_LDADD = $(babeltrace_bin_LDADD)
86 babeltrace_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION
87
88 # babeltrace-log rules and config below
89 babeltrace_log_bin_SOURCES = babeltrace-log.c
90 babeltrace_log_bin_LDADD = $(top_builddir)/compat/libcompat.la
91 babeltrace_log_bin_CFLAGS = $(AM_CFLAGS) '-DBT_CLI_PATH="$(abs_top_builddir)/cli/babeltrace$(EXEEXT)"'
92
93 if BABELTRACE_BUILD_WITH_MINGW
94 babeltrace_log_bin_LDADD += -lpopt
95 endif
96
97 babeltrace_log_SOURCES = $(babeltrace_log_bin_SOURCES)
98 babeltrace_log_LDADD = $(babeltrace_log_bin_LDADD)
99 babeltrace_log_CFLAGS = $(AM_CFLAGS) '-DBT_CLI_PATH="$(bindir)/babeltrace$(EXEEXT)"'
This page took 0.0309 seconds and 4 git commands to generate.