summaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: f44a6bc4610267e3a86e03e41a89537a13f5b6f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = libcnary src include tools docs

if HAVE_CYTHON
SUBDIRS += cython
endif

if BUILD_TESTS
SUBDIRS += test
endif

if BUILD_FUZZERS
SUBDIRS += fuzz
endif

EXTRA_DIST = \
	README.md \
	git-version-gen

dist-hook:
	echo $(VERSION) > $(distdir)/.tarball-version

docs/html: $(top_builddir)/doxygen.cfg $(top_srcdir)/include/plist/*.h
	rm -rf docs/html
	doxygen doxygen.cfg

docs/README.doxygen.md: README.md
	awk '/\#\# Table of Contents/{while(getline && $$0 != ""){}{print "[TOC]"}}1' README.md > $@

docs: doxygen.cfg docs/README.doxygen.md docs/html