3d5c0f46f1
In "make html", don't use the -W flag with Sphinx. This makes it possible to create the documentation with Sphinx 1.0 without errors, as the warning about using old-style C markup isn't turned to an error. Don't build documentation in "make check". Instead, add a new make target "check-doc" to build the documentation with the -W flag.
9 lines
173 B
Makefile
9 lines
173 B
Makefile
EXTRA_DIST = CHANGES LICENSE README.rst
|
|
SUBDIRS = doc src test
|
|
|
|
check-doc:
|
|
$(MAKE) SPHINXOPTS_EXTRA=-W html
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = jansson.pc
|