]> sjero.net Git - wget/blob - doc/Makefile.in
[svn] * {.,doc,src,util,windows}/Makefile.in: Moved top_builddir out of "User
[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 INSTALL      = @INSTALL@
46 INSTALL_DATA = @INSTALL_DATA@
47 RM = rm -f
48
49 TEXI2POD     = ./texi2pod.pl
50 POD2MAN      = @POD2MAN@
51 MAN          = wget.$(manext)
52 WGETRC       = $(sysconfdir)/wgetrc
53 SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion
54
55 #
56 # Dependencies for building
57 #
58
59 all: wget.info @COMMENT_IF_NO_POD2MAN@$(MAN)
60
61 everything: all wget_us.ps wget_a4.ps wget_toc.html
62
63 $(SAMPLERCTEXI): $(srcdir)/sample.wgetrc
64         sed s/@/@@/g $< > $@
65
66 wget.info: $(SAMPLERCTEXI) $(srcdir)/wget.texi
67         -$(MAKEINFO)
68
69 $(TEXI2POD): $(srcdir)/$(TEXI2POD).in
70         sed s,/usr/bin/perl,@PERL@, $< > $@
71         chmod u+x $@
72
73 wget.pod: $(srcdir)/wget.texi texi2pod.pl
74         $(TEXI2POD) $< $@
75
76 $(MAN): wget.pod
77         $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $< > $@
78
79 #wget.cat: $(MAN)
80 #       nroff -man $< > $@
81
82 dvi: wget.dvi
83
84 wget.dvi: $(srcdir)/wget.texi
85         $(TEXI2DVI) $(srcdir)/wget.texi
86
87 wget_us.ps: wget.dvi
88         $(DVIPS) -t letter -o $@ wget.dvi
89
90 wget_a4.ps: wget.dvi
91         $(DVIPS) -t a4 -o $@ wget.dvi
92
93 wget_toc.html: $(srcdir)/wget.texi
94         $(TEXI2HTML) $(srcdir)/wget.texi
95
96 #
97 # Dependencies for installing
98 #
99
100 # install all the documentation
101 install: install.info install.wgetrc @COMMENT_IF_NO_POD2MAN@install.man
102
103 # uninstall all the documentation
104 uninstall: uninstall.info @COMMENT_IF_NO_POD2MAN@uninstall.man
105
106 # install info pages, creating install directory if necessary
107 install.info: wget.info
108         $(top_srcdir)/mkinstalldirs $(infodir)
109         -for file in wget.info wget.info-*[0-9]; do \
110            test -f $$file && $(INSTALL_DATA) $$file $(infodir)/$$file ; \
111         done
112
113 # install man page, creating install directory if necessary
114 install.man: $(MAN)
115         $(top_srcdir)/mkinstalldirs $(mandir)/man$(manext)
116         $(INSTALL_DATA) $(srcdir)/$(MAN) $(mandir)/man$(manext)/$(MAN)
117
118 # install sample.wgetrc
119 install.wgetrc: $(srcdir)/sample.wgetrc
120         $(top_srcdir)/mkinstalldirs $(sysconfdir)
121         @if test -f $(WGETRC); then \
122           if cmp -s $(srcdir)/sample.wgetrc $(WGETRC); then echo ""; \
123              else \
124              echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new'; \
125              $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new; \
126              echo; \
127              echo "WARNING: Differing \`$(WGETRC)'"; \
128              echo "         exists and has been spared.  You might want to"; \
129              echo "         consider merging in the new lines from"; \
130              echo "         \`$(WGETRC).new'."; \
131              echo; \
132              echo "<Hit RETURN to acknowledge>\c"; \
133              read user_input; \
134              echo; \
135           fi; \
136         else \
137           $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC); \
138         fi
139
140 # uninstall info pages
141 uninstall.info:
142         $(RM) $(infodir)/wget.info*
143
144 # uninstall man page
145 uninstall.man:
146         $(RM) $(mandir)/man$(manext)/$(MAN)
147
148 #
149 # Dependencies for cleanup
150 #
151
152 clean:
153         $(RM) *~ *.bak *.cat *.pod *.html
154         $(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.log
155
156 distclean: clean
157         $(RM) Makefile
158         $(RM) $(MAN) $(TEXI2POD)
159
160 realclean: distclean
161         $(RM) wget.info*
162         $(RM) $(SAMPLERCTEXI)
163
164 #
165 # Dependencies for maintenance
166 #
167
168 subdir = doc
169
170 Makefile: Makefile.in ../config.status
171         cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status