summaryrefslogtreecommitdiffstats
path: root/Makefile.am
blob: 487dc6ab9a0d9216f3c5dc85ac5e91bf67a7d0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = libcnary src include tools test docs
if HAVE_CYTHON
SUBDIRS += cython
endif
if BUILD_FUZZERS
SUBDIRS += fuzz
endif

EXTRA_DIST = \
	README.md

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

docs: doxygen.cfg docs/html

clean-local:
	rm -rf docs