]> sjero.net Git - wget/blob - doc/Makefile.in
[svn] Make `make install' non-interactive.
[wget] / doc / Makefile.in
1 # Makefile for `wget' utility
2 # Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 #
19 # Version: @VERSION@
20 #
21
22 SHELL = /bin/sh
23
24 # Program to format Texinfo source into Info files.
25 MAKEINFO = @MAKEINFO@
26 # Program to format Texinfo source into DVI files.
27 TEXI2DVI = texi2dvi
28 # Program to convert DVI files to PostScript
29 DVIPS = dvips -D 300
30 # Program to convert texinfo files to html
31 TEXI2HTML = texi2html -expandinfo -split_chapter
32
33 top_builddir = ..
34
35 top_srcdir = @top_srcdir@
36 srcdir     = @srcdir@
37 VPATH      = @srcdir@
38
39 prefix     = @prefix@
40 infodir    = @infodir@
41 mandir     = @mandir@
42 manext     = 1
43 sysconfdir = @sysconfdir@
44
45 DESTDIR    =
46
47 INSTALL      = @INSTALL@
48 INSTALL_DATA = @INSTALL_DATA@
49 RM = rm -f
50
51 TEXI2POD     = ./texi2pod.pl
52 POD2MAN      = @POD2MAN@
53 MAN          = wget.$(manext)
54 WGETRC       = $(sysconfdir)/wgetrc
55 SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion
56
57 #
58 # Dependencies for building
59 #
60
61 all: wget.info @COMMENT_IF_NO_POD2MAN@$(MAN)
62
63 everything: all wget_us.ps wget_a4.ps wget_toc.html
64
65 $(SAMPLERCTEXI): $(srcdir)/sample.wgetrc
66         sed s/@/@@/g $< > $@
67
68 wget.info: $(SAMPLERCTEXI) $(srcdir)/wget.texi
69         $(MAKEINFO) -I$(srcdir)
70
71 $(TEXI2POD): $(srcdir)/$(TEXI2POD).in
72         sed s,/usr/bin/perl,@PERL@, $< > $@
73         chmod u+x $@
74
75 wget.pod: $(srcdir)/wget.texi texi2pod.pl
76         $(TEXI2POD) $< $@
77
78 $(MAN): wget.pod
79         $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $< > $@
80
81 #wget.cat: $(MAN)
82 #       nroff -man $< > $@
83
84 dvi: wget.dvi
85
86 wget.dvi: $(srcdir)/wget.texi
87         $(TEXI2DVI) $(srcdir)/wget.texi
88
89 wget_us.ps: wget.dvi
90         $(DVIPS) -t letter -o $@ wget.dvi
91
92 wget_a4.ps: wget.dvi
93         $(DVIPS) -t a4 -o $@ wget.dvi
94
95 wget_toc.html: $(srcdir)/wget.texi
96         $(TEXI2HTML) $(srcdir)/wget.texi
97
98 #
99 # Dependencies for installing
100 #
101
102 # install all the documentation
103 install: install.info install.wgetrc @COMMENT_IF_NO_POD2MAN@install.man
104
105 # uninstall all the documentation
106 uninstall: uninstall.info @COMMENT_IF_NO_POD2MAN@uninstall.man
107
108 # install info pages, creating install directory if necessary
109 install.info: wget.info
110         $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
111         -for file in wget.info wget.info-*[0-9]; do \
112            test -f $$file && $(INSTALL_DATA) $$file $(DESTDIR)$(infodir)/$$file ; \
113         done
114
115 # install man page, creating install directory if necessary
116 install.man: $(MAN)
117         $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext)
118         $(INSTALL_DATA) $(MAN) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)
119
120 # install sample.wgetrc
121 install.wgetrc: $(srcdir)/sample.wgetrc
122         $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir)
123         @if test -f $(DESTDIR)$(WGETRC); then \
124           if cmp -s $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); then echo ""; \
125              else \
126              echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new'; \
127              $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new; \
128              echo; \
129              echo "WARNING: Differing \`$(DESTDIR)$(WGETRC)'"; \
130              echo "         exists and has been spared.  You might want to"; \
131              echo "         consider merging in the new lines from"; \
132              echo "         \`$(DESTDIR)$(WGETRC).new'."; \
133              echo; \
134           fi; \
135         else \
136           $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); \
137         fi
138
139 # uninstall info pages
140 uninstall.info:
141         $(RM) $(DESTDIR)$(infodir)/wget.info*
142
143 # uninstall man page
144 uninstall.man:
145         $(RM) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)
146
147 #
148 # Dependencies for cleanup
149 #
150
151 clean:
152         $(RM) *~ *.bak *.cat *.pod *.html
153         $(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.log
154
155 distclean: clean
156         $(RM) Makefile
157         $(RM) $(MAN) $(TEXI2POD)
158
159 realclean: distclean
160         $(RM) wget.info*
161         $(RM) $(SAMPLERCTEXI)
162
163 #
164 # Dependencies for maintenance
165 #
166
167 subdir = doc
168
169 Makefile: Makefile.in ../config.status
170         cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status