mirror of
https://github.com/yaml/libyaml
synced 2026-06-08 18:28:36 +00:00
a51447c932
Add basic reader fields to the parser structure. Start implementing basic parser functions.
18 lines
433 B
Makefile
18 lines
433 B
Makefile
INCLUDES = yaml/yaml.h #yaml/yaml_version.h yaml/yaml_error.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
|
|
|
|
distclean-local:
|
|
-rm -rf $(top_builddir)/doc/html
|
|
|
|
dist-hook: html
|
|
cp -a $(top_builddir)/doc/html $(top_distdir)/doc
|