Commit | Line | Data |
---|---|---|
ac65e355 MD |
1 | ACLOCAL_AMFLAGS = -I m4 |
2 | ||
c3ddb532 | 3 | SUBDIRS = include \ |
6fbd4105 | 4 | common \ |
beb0fb75 | 5 | compat \ |
2edd7dd4 MJ |
6 | logging \ |
7 | lib | |
6fbd4105 | 8 | |
9ffc0257 | 9 | if ENABLE_PYTHON_PLUGINS |
c3ddb532 PP |
10 | # Only build the Python plugin provider shared object if the |
11 | # configuration doesn't ask to make it built-in. | |
6fbd4105 PP |
12 | SUBDIRS += python-plugin-provider |
13 | endif | |
14 | ||
15 | SUBDIRS += \ | |
6fbd4105 | 16 | plugins \ |
8d77550c | 17 | cli \ |
6fbd4105 | 18 | bindings \ |
6fbd4105 | 19 | doc \ |
312c056a PP |
20 | extras \ |
21 | tests | |
eea91b68 | 22 | |
7722ed94 | 23 | dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \ |
f9ded0e0 | 24 | std-ext-lib.txt README CONTRIBUTING.adoc |
0bcabcbd MD |
25 | |
26 | dist_noinst_DATA = CodingStyle | |
d0acc96d YB |
27 | |
28 | pkgconfigdir = $(libdir)/pkgconfig | |
e7a7efdb | 29 | pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc |
f9ded0e0 PP |
30 | |
31 | CONTRIBUTING.html: $(srcdir)/CONTRIBUTING.adoc | |
32 | asciidoc --verbose -a source-highlighter=pygments $< | |
33 | ||
34 | CLEANFILES = CONTRIBUTING.html |