Makefile.am (1137B)
1 # This Makefile.am is in the public domain 2 dist_man_MANS = libmicrohttpd2.3 3 4 SUBDIRS = . 5 #SUBDIRS += doxygen 6 7 if BUILD_EXAMPLES 8 #SUBDIRS += examples 9 endif 10 11 DISTCLEANFILES = \ 12 libmicrohttpd2.cps \ 13 libmicrohttpd2.fn \ 14 libmicrohttpd2.toc \ 15 libmicrohttpd2.tp \ 16 libmicrohttpd2.tps \ 17 libmicrohttpd2.aux \ 18 libmicrohttpd2.dvi 19 20 MAINTAINERCLEANFILES = \ 21 $(srcdir)/libmicrohttpd2.info \ 22 $(srcdir)/libmicrohttpd2.info-1 \ 23 $(srcdir)/libmicrohttpd2.info-2 24 25 info_TEXINFOS = \ 26 libmicrohttpd2.texi 27 libmicrohttpd_TEXINFOS = \ 28 manual/*.inc \ 29 examples/*.c \ 30 lgpl.texi \ 31 ecos.texi \ 32 gpl-2.0.texi \ 33 fdl-1.3.texi 34 35 EXTRA_DIST = \ 36 $(libmicrohttpd_TEXINFOS) 37 38 install-info-local: 39 @echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \ 40 $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; 41 42 install-html-local: 43 @if test -n "$(htmldir)"; then \ 44 echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/libmicrohttpd2.html'"; \ 45 $(MKDIR_P) "$(DESTDIR)$(htmldir)/libmicrohttpd2.html" || exit 1; \ 46 else : ; fi 47 48 update-stamp: 49 @rm -f '$(srcdir)/stamp-vti' '$(srcdir)/version.texi' && \ 50 $(MAKE) $(AM_MAKEFLAGS) '$(srcdir)/version.texi' 51 52 .PHONY: update-stamp