Cleanup: use detected asciidoc to build CONTRIBUTING.html
[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 extras \
23 tests
24
25 dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \
26 std-ext-lib.txt README CONTRIBUTING.adoc
27
28 dist_noinst_DATA = CodingStyle
29
30 pkgconfigdir = $(libdir)/pkgconfig
31 pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc
32
33 # This is a convenience target, it's not part of the build process.
34 CONTRIBUTING.html: CONTRIBUTING.adoc
35 $(ASCIIDOC) --verbose -a source-highlighter=pygments $<
36
37 CLEANFILES = CONTRIBUTING.html
This page took 0.031247 seconds and 5 git commands to generate.