1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
docdir=$(prefix)/share/doc/@PACKAGE@
EXTRA_DIST = Doxyfile.in white-xifish.png
# ensure doxygen-build.stamp is included, or else the documentation will
# not be built or distributed
noinst_DATA = doxygen-build.stamp
if HAVE_DOXYGEN
doxygen-build.stamp: Doxyfile $(top_srcdir)/include/fishsound/*.h
doxygen
touch doxygen-build.stamp
else
doxygen-build.stamp:
echo "*** Warning: Doxygen not found; documentation will not be built."
touch doxygen-build.stamp
endif
dist_docdir = $(distdir)/libfishsound
dist-hook:
if test -d libfishsound; then \
mkdir $(dist_docdir); \
for dir in libfishsound/*; do \
b=`basename $$dir`; \
if test $$b != "CVS"; then \
if test -d $$dir; then \
mkdir $(dist_docdir)/$$b; \
for f in $$dir/*; do \
cp -p $$f $(dist_docdir)/$$b; \
done \
fi \
fi \
done \
fi
install-data-local: doxygen-build.stamp
$(mkinstalldirs) $(docdir)
if test -d libfishsound; then \
for dir in libfishsound/*; do \
if test -d $$dir; then \
b=`basename $$dir`; \
$(mkinstalldirs) $(docdir)/$$b; \
for f in $$dir/*; do \
$(INSTALL_DATA) $$f $(docdir)/$$b; \
done \
fi \
done \
fi
uninstall-local:
rm -rf $(docdir)
clean-local:
if test -d libfishsound; then rm -rf libfishsound; fi
if test -f doxygen-build.stamp; then rm -f doxygen-build.stamp; fi
|