Makefile.am (2050B)
1 # This Makefile.am is in the public domain 2 dist_man_MANS = libmicrohttpd.3 3 4 SUBDIRS = . doxygen 5 6 if BUILD_EXAMPLES 7 SUBDIRS += examples 8 endif 9 10 DISTCLEANFILES = \ 11 libmicrohttpd.cps \ 12 libmicrohttpd.dvi \ 13 libmicrohttpd-tutorial.cps \ 14 libmicrohttpd-tutorial.dvi 15 16 info_TEXINFOS = \ 17 libmicrohttpd.texi \ 18 libmicrohttpd-tutorial.texi 19 microhttpd_TEXINFOS = \ 20 lgpl.texi \ 21 ecos.texi \ 22 gpl-2.0.texi \ 23 fdl-1.3.texi 24 microhttpd_tutorial_TEXINFOS = \ 25 chapters/basicauthentication.inc \ 26 chapters/bibliography.inc \ 27 chapters/exploringrequests.inc \ 28 chapters/hellobrowser.inc \ 29 chapters/introduction.inc \ 30 chapters/largerpost.inc \ 31 chapters/processingpost.inc \ 32 chapters/responseheaders.inc \ 33 chapters/tlsauthentication.inc \ 34 chapters/sessions.inc \ 35 chapters/websocket.inc 36 37 EXTRA_DIST = \ 38 $(microhttpd_TEXINFOS) $(microhttpd_tutorial_TEXINFOS) \ 39 libmicrohttpd_performance_data.png \ 40 libmicrohttpd_performance_data.eps 41 42 install-info-local: 43 @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \ 44 $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \ 45 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \ 46 $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(infodir)" || exit 1; 47 48 install-html-local: 49 @if test -n "$(htmldir)"; then \ 50 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \ 51 $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \ 52 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \ 53 $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \ 54 else : ; fi 55 56 uninstall-local: 57 @if test -d "$(DESTDIR)$(infodir)"; then \ 58 echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \ 59 rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \ 60 else : ; fi 61 62 update-stamp: 63 @rm -f '$(srcdir)/stamp-vti' '$(srcdir)/version.texi' && \ 64 $(MAKE) $(AM_MAKEFLAGS) '$(srcdir)/version.texi' 65 66 .PHONY: update-stamp 67