Makefile.am (2114B)
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/asyncresponses.inc \ 26 chapters/basicauthentication.inc \ 27 chapters/bibliography.inc \ 28 chapters/callbackresponse.inc \ 29 chapters/exploringrequests.inc \ 30 chapters/hellobrowser.inc \ 31 chapters/introduction.inc \ 32 chapters/largerpost.inc \ 33 chapters/processingpost.inc \ 34 chapters/responseheaders.inc \ 35 chapters/tlsauthentication.inc \ 36 chapters/sessions.inc \ 37 chapters/upgrade.inc 38 39 EXTRA_DIST = \ 40 $(microhttpd_TEXINFOS) $(microhttpd_tutorial_TEXINFOS) \ 41 libmicrohttpd_performance_data.png \ 42 libmicrohttpd_performance_data.eps 43 44 install-info-local: 45 @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \ 46 $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \ 47 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(infodir)'"; \ 48 $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(infodir)" || exit 1; 49 50 install-html-local: 51 @if test -n "$(htmldir)"; then \ 52 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \ 53 $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \ 54 echo " $(INSTALL_DATA) libmicrohttpd_performance_data.png '$(DESTDIR)$(htmldir)/libmicrohttpd.html'"; \ 55 $(INSTALL_DATA) '$(srcdir)/libmicrohttpd_performance_data.png' "$(DESTDIR)$(htmldir)/libmicrohttpd.html" || exit 1; \ 56 else : ; fi 57 58 uninstall-local: 59 @if test -d "$(DESTDIR)$(infodir)"; then \ 60 echo " rm -f '$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png'"; \ 61 rm -f "$(DESTDIR)$(infodir)/libmicrohttpd_performance_data.png" \ 62 else : ; fi 63 64 update-stamp: 65 @rm -f '$(srcdir)/stamp-vti' '$(srcdir)/version.texi' && \ 66 $(MAKE) $(AM_MAKEFLAGS) '$(srcdir)/version.texi' 67 68 .PHONY: update-stamp 69