aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-12-04 15:46:18 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-12-04 15:46:18 +0300
commitace60e23531d15ed1a7e2e235388d33a6da468ba (patch)
treecd0f8a6ce422114a2f5d6c801a99d41dda3b71ca /doc
parent9a3ecffba7ce24ba26d7267f5c7e70d903ec11e2 (diff)
downloadlibmicrohttpd-ace60e23531d15ed1a7e2e235388d33a6da468ba.tar.gz
libmicrohttpd-ace60e23531d15ed1a7e2e235388d33a6da468ba.zip
docs: install documentation picture alongside documentation files
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.am20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am
index f07db8bd..ef8ee966 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -35,3 +35,23 @@ EXTRA_DIST = \
35 $(microhttpd_TEXINFOS) \ 35 $(microhttpd_TEXINFOS) \
36 libmicrohttpd_performance_data.png \ 36 libmicrohttpd_performance_data.png \
37 libmicrohttpd_performance_data.eps 37 libmicrohttpd_performance_data.eps
38
39install-info-local:
40 @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
41 $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
42 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \
43 $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(infodir)" || exit 1;
44
45install-html-local:
46 @if test -n "$(htmldir)"; then \
47 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
48 $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
49 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
50 $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
51 else : ; fi
52
53uninstall-local:
54 @if test -d "$(DESTDIR)$(infodir)"; then \
55 echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \
56 rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \
57 else : ; fi