Makefile.am 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # This Makefile.am is in the public domain
  2. man_MANS = libmicrohttpd.3
  3. SUBDIRS = . doxygen
  4. if BUILD_EXAMPLES
  5. SUBDIRS += examples
  6. endif
  7. DISTCLEANFILES = \
  8. libmicrohttpd.cps \
  9. libmicrohttpd.dvi \
  10. libmicrohttpd-tutorial.cps \
  11. libmicrohttpd-tutorial.dvi
  12. info_TEXINFOS = \
  13. libmicrohttpd.texi \
  14. libmicrohttpd-tutorial.texi
  15. microhttpd_TEXINFOS = \
  16. chapters/basicauthentication.inc \
  17. chapters/bibliography.inc \
  18. chapters/exploringrequests.inc \
  19. chapters/hellobrowser.inc \
  20. chapters/introduction.inc \
  21. chapters/largerpost.inc \
  22. chapters/processingpost.inc \
  23. chapters/responseheaders.inc \
  24. chapters/tlsauthentication.inc \
  25. chapters/sessions.inc \
  26. fdl-1.3.texi \
  27. lgpl.texi \
  28. ecos.texi
  29. EXTRA_DIST = \
  30. $(man_MANS) \
  31. $(microhttpd_TEXINFOS) \
  32. libmicrohttpd_performance_data.png \
  33. libmicrohttpd_performance_data.eps
  34. install-info-local:
  35. @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
  36. $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
  37. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \
  38. $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(infodir)" || exit 1;
  39. install-html-local:
  40. @if test -n "$(htmldir)"; then \
  41. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  42. $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  43. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  44. $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  45. else : ; fi
  46. uninstall-local:
  47. @if test -d "$(DESTDIR)$(infodir)"; then \
  48. echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \
  49. rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \
  50. else : ; fi
  51. # end of 'if BUILD_DOC'