libfyaml-sys 0.2.9+fy0.8.0

Rust binding for libfyaml
Documentation
BUILDDIR=_build

if HAVE_SPHINX

MANPAGES1 = $(BUILDDIR)/man/fy-tool.1

doc-%: 
	srctree=@top_srcdir@ @SPHINX@ -M `echo $@ | sed -s 's/^doc-//g'` "@srcdir@" "$(BUILDDIR)"

# if we have sphinx generate the manpages
$(MANPAGES1): doc-man

else

# otherwise, install the canned ones
MANPAGES1 = $(srcdir)/canned-man/fy-tool.1

endif

install-data-hook: $(MANPAGES1)
	$(MKDIR_P) "$(DESTDIR)$(mandir)/man1"
	@for i in "$(MANPAGES1)"; do \
	  $(INSTALL_DATA) $$i "$(DESTDIR)$(mandir)/man1"; \
	done
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-dump.1)
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-filter.1)
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-testsuite.1)
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-join.1)
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-ypath.1)
	(cd "$(DESTDIR)$(mandir)/man1" && $(LN_S) -f fy-tool.1 fy-compose.1)

uninstall-hook:
	@for i in "$(MANPAGES1)"; do \
	  rm -f "$(DESTDIR)$(mandir)/man1/`basename $$i`"; \
	done
	(cd "$(DESTDIR)$(mandir)/man1" && \
		rm -f fy-dump.1 fy-filter.1 fy-testsuite.1 fy-join.1 fy-ypath.1 fy-compose.1)

clean-local:
	@rm -rf "$(BUILDDIR)"

maintainer-clean-local:
	@rm -rf Makefile.in

EXTRA_DIST = \
	conf.py \
	index.rst \
	intro.rst \
	libfyaml.rst \
	man/fy-tool.rst \
	canned-man/fy-tool.1