Add logging API (internal to log, public to set the current log level)
[babeltrace.git] / Makefile.am
1 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 SUBDIRS = \
6 include \
7 common \
8 compat \
9 logging
10
11 if WITH_PYTHON_PLUGINS
12 SUBDIRS += python-plugin-provider
13 endif
14
15 SUBDIRS += \
16 lib \
17 plugins \
18 cli \
19 bindings \
20 tests \
21 doc \
22 extras
23
24 dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \
25 std-ext-lib.txt README
26
27 dist_noinst_DATA = CodingStyle
28
29 pkgconfigdir = $(libdir)/pkgconfig
30 pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc
31
32 # Create a symlink from libbabeltrace-ctf to libbabeltrace.
33 # CTF writer used to be in libbabeltrace-ctf in Babeltrace 1, so this
34 # file must still exist. As of Babeltrace 2, CTF writer is implemented
35 # in libbabeltrace, hence the symlink.
36 install-exec-hook:
37 $(LN_S) -f libbabeltrace.so $(DESTDIR)$(libdir)/libbabeltrace-ctf.so
This page took 0.03123 seconds and 5 git commands to generate.