mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
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
17 lines
396 B
Makefile
17 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
|