X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=Makefile.am;h=98fd7d44fcb07098f9c5dc4471d9eb66c61e49db;hb=ce96d6ebac67d721fc1d087d8a7f21b9a3611369;hp=0544bd1684aaee0d03688d435763fa9edee2e09e;hpb=732995546409a6d6c279acbcd44d3dbc4a1a3195;p=babeltrace.git diff --git a/Makefile.am b/Makefile.am index 0544bd16..98fd7d44 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,13 +1,34 @@ -AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include - ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = include types compat lib formats plugins converter bindings tests doc extras +SUBDIRS = include \ + common \ + compat \ + logging \ + lib + +if ENABLE_PYTHON_PLUGINS +# Only build the Python plugin provider shared object if the +# configuration doesn't ask to make it built-in. +SUBDIRS += python-plugin-provider +endif + +SUBDIRS += \ + plugins \ + cli \ + bindings \ + tests \ + doc \ + extras dist_doc_DATA = ChangeLog LICENSE mit-license.txt gpl-2.0.txt \ - std-ext-lib.txt README + std-ext-lib.txt README CONTRIBUTING.adoc dist_noinst_DATA = CodingStyle pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = babeltrace.pc babeltrace-ctf.pc + +CONTRIBUTING.html: $(srcdir)/CONTRIBUTING.adoc + asciidoc --verbose -a source-highlighter=pygments $< + +CLEANFILES = CONTRIBUTING.html