Files
yaml-libyaml/include/Makefile.am
T
Kirill Simonov a51447c932 Doxygenify the header file.
Add basic reader fields to the parser structure.

Start implementing basic parser functions.
2006-05-26 21:46:47 +00:00

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