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