Cleanup: remove useless Makefiles from extras
[babeltrace.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I m4
2
3 SUBDIRS = include \
4 common \
5 ctfser \
6 fd-cache \
7 compat \
8 logging \
9 lib
10
11 if ENABLE_PYTHON_PLUGINS
12 # Only build the Python plugin provider shared object if the
13 # configuration doesn't ask to make it built-in.
14 SUBDIRS += python-plugin-provider
15 endif
16
17 SUBDIRS += \
18 plugins \
19 cli \
20 bindings \
21 doc \
22 tests
23
24 # Directories added to EXTRA_DIST will be recursively copied to the distribution.
25 EXTRA_DIST = \
26 extras
27
28 dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \
29 std-ext-lib.txt README CONTRIBUTING.adoc
30
31 dist_noinst_DATA = CodingStyle
32
33 pkgconfigdir = $(libdir)/pkgconfig
34 pkgconfig_DATA = babeltrace2.pc babeltrace2-ctf.pc
35
36 # This is a convenience target, it's not part of the build process.
37 CONTRIBUTING.html: CONTRIBUTING.adoc
38 $(ASCIIDOC) --verbose -a source-highlighter=pygments $<
39
40 CLEANFILES = CONTRIBUTING.html
This page took 0.031371 seconds and 5 git commands to generate.