Add --enable-asan configure option
[babeltrace.git] / src / lib / Makefile.am
1 # SPDX-License-Identifier: MIT
2
3 SUBDIRS = trace-ir prio-heap plugin graph
4
5 lib_LTLIBRARIES = libbabeltrace2.la
6
7 libbabeltrace2_la_SOURCES = \
8 assert-cond-base.h \
9 assert-cond.h \
10 assert-cond.c \
11 babeltrace2.c \
12 current-thread.c \
13 error.c \
14 error.h \
15 func-status.h \
16 integer-range-set.c \
17 integer-range-set.h \
18 lib-logging.c \
19 logging.c \
20 logging.h \
21 object-pool.c \
22 object-pool.h \
23 object.h \
24 property.h \
25 util.c \
26 value.c \
27 value.h
28
29 libbabeltrace2_la_LDFLAGS = \
30 $(AM_LDFLAGS) \
31 $(LT_NO_UNDEFINED) \
32 -version-info $(BABELTRACE_LIBRARY_VERSION)
33
34 libbabeltrace2_la_LIBADD = \
35 prio-heap/libprio-heap.la \
36 graph/libgraph.la \
37 plugin/libplugin.la \
38 trace-ir/libtrace-ir.la \
39 $(top_builddir)/src/logging/libbabeltrace2-logging.la \
40 $(top_builddir)/src/common/libbabeltrace2-common.la \
41 $(top_builddir)/src/compat/libcompat.la
42
43 if ENABLE_BUILT_IN_PYTHON_PLUGIN_SUPPORT
44 libbabeltrace2_la_LIBADD += $(top_builddir)/src/python-plugin-provider/babeltrace2-python-plugin-provider.la
45 endif
This page took 0.03036 seconds and 4 git commands to generate.