Initial implementation of the debuginfo API
[babeltrace.git] / lib / Makefile.am
1 SUBDIRS = prio_heap .
2
3 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
4
5 lib_LTLIBRARIES = libbabeltrace.la
6
7 libbabeltrace_la_SOURCES = babeltrace.c \
8 iterator.c \
9 context.c \
10 trace-handle.c \
11 trace-collection.c \
12 registry.c \
13 values.c \
14 ref.c
15
16 libbabeltrace_la_LDFLAGS = -version-info $(BABELTRACE_LIBRARY_VERSION)
17
18 if ENABLE_DEBUGINFO
19 noinst_LTLIBRARIES = libdebuginfo.la
20
21 libdebuginfo_la_SOURCES = debuginfo.c \
22 so-info.c \
23 dwarf.c \
24 crc32.c
25 libdebuginfo_la_LDFLAGS = -lelf -ldw
26 endif
27
28 libbabeltrace_la_LIBADD = \
29 prio_heap/libprio_heap.la \
30 $(top_builddir)/types/libbabeltrace_types.la \
31 $(top_builddir)/compat/libcompat.la
This page took 0.031148 seconds and 5 git commands to generate.