Makefile.am 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # This Makefile.am is in the public domain
  2. dist_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. lgpl.texi \
  17. ecos.texi \
  18. gpl-2.0.texi \
  19. fdl-1.3.texi
  20. microhttpd_tutorial_TEXINFOS = \
  21. chapters/basicauthentication.inc \
  22. chapters/bibliography.inc \
  23. chapters/exploringrequests.inc \
  24. chapters/hellobrowser.inc \
  25. chapters/introduction.inc \
  26. chapters/largerpost.inc \
  27. chapters/processingpost.inc \
  28. chapters/responseheaders.inc \
  29. chapters/tlsauthentication.inc \
  30. chapters/sessions.inc \
  31. chapters/websocket.inc
  32. EXTRA_DIST = \
  33. $(microhttpd_TEXINFOS) $(microhttpd_tutorial_TEXINFOS) \
  34. libmicrohttpd_performance_data.png \
  35. libmicrohttpd_performance_data.eps
  36. install-info-local:
  37. @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
  38. $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
  39. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \
  40. $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(infodir)" || exit 1;
  41. install-html-local:
  42. @if test -n "$(htmldir)"; then \
  43. echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  44. $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  45. echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \
  46. $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \
  47. else : ; fi
  48. uninstall-local:
  49. @if test -d "$(DESTDIR)$(infodir)"; then \
  50. echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \
  51. rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \
  52. else : ; fi
  53. update-stamp:
  54. @rm -f '$(srcdir)/stamp-vti' '$(srcdir)/version.texi' && \
  55. $(MAKE) $(AM_MAKEFLAGS) '$(srcdir)/version.texi'
  56. .PHONY: update-stamp