Files
mars-flaim/ftk/docs/Makefile.am

22 lines
414 B
Makefile

docpkg = $(PACKAGE_TARNAME)-doxy-$(PACKAGE_VERSION).tar.gz
doc_DATA = $(docpkg)
$(docpkg): doxygen.stamp
tar chof - html | gzip -9 -c >$@
doxygen.stamp: doxyfile
$(DOXYGEN) $(DOXYFLAGS) $<
echo Timestamp > $@
install-data-hook:
cd $(DESTDIR)$(docdir) && tar xf $(docpkg)
uninstall-hook:
cd $(DESTDIR)$(docdir) && rm -rf html
CLEANFILES = doxywarn.txt doxygen.stamp $(docpkg)
clean-local:
rm -rf html