Makefile.am 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. gpl-2.0.texi \
  28. lgpl.texi \
  29. ecos.texi
  30. EXTRA_DIST = \
  31. $(man_MANS) \
  32. $(microhttpd_TEXINFOS) \
  33. libmicrohttpd_performance_data.png \
  34. libmicrohttpd_performance_data.eps
  35. install-info-local:
  36. @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
  37. $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
  38. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \
  39. $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(infodir)" || exit 1;
  40. install-html-local:
  41. @if test -n "$(htmldir)"; then \
  42. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  43. $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  44. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  45. $(INSTALL_DATA) $(srcdir)/libmicrohttpd_performance_data.png "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  46. else : ; fi
  47. uninstall-local:
  48. @if test -d "$(DESTDIR)$(infodir)"; then \
  49. echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \
  50. rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \
  51. else : ; fi
  52. # end of 'if BUILD_DOC'