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