e51c53f366
LibYAML is a YAML 1.1 parser and emitter under MIT license which will soon be used by the pkg boostrap (usr.bin/pkg) and bhyve Reviewed by: roberto, antoine
18 lines
396 B
Makefile
18 lines
396 B
Makefile
INCLUDES = yaml.h
|
|
DOXYGEN_CFG = $(top_srcdir)/doc/doxygen.cfg
|
|
|
|
nobase_include_HEADERS = $(INCLUDES)
|
|
|
|
if DOXYGEN
|
|
|
|
html: $(INCLUDES) $(DOXYGEN_CFG)
|
|
PACKAGE=$(PACKAGE) VERSION=$(VERSION) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) doxygen $(DOXYGEN_CFG)
|
|
|
|
endif
|
|
|
|
maintainer-clean-local:
|
|
-rm -rf $(top_builddir)/doc/html
|
|
|
|
dist-hook: html
|
|
cp -a $(top_builddir)/doc/html $(top_distdir)/doc
|