1999-12-02 02:42:23 -05:00
|
|
|
# Makefile for `wget' utility
|
|
|
|
# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Version: @VERSION@
|
|
|
|
#
|
|
|
|
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
# Program to format Texinfo source into Info files.
|
|
|
|
MAKEINFO = @MAKEINFO@
|
|
|
|
# Program to format Texinfo source into DVI files.
|
|
|
|
TEXI2DVI = texi2dvi
|
|
|
|
# Program to convert DVI files to PostScript
|
|
|
|
DVIPS = dvips -D 300
|
|
|
|
# Program to convert texinfo files to html
|
|
|
|
TEXI2HTML = texi2html -expandinfo -split_chapter
|
|
|
|
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
prefix = @prefix@
|
|
|
|
infodir = @infodir@
|
|
|
|
mandir = @mandir@
|
|
|
|
manext = 1
|
|
|
|
sysconfdir = @sysconfdir@
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
RM = rm -f
|
|
|
|
|
|
|
|
MAN = wget.$(manext)
|
|
|
|
WGETRC = $(sysconfdir)/wgetrc
|
|
|
|
|
|
|
|
#
|
|
|
|
# Dependencies for building
|
|
|
|
#
|
|
|
|
|
|
|
|
all: wget.info # wget.cat
|
|
|
|
|
|
|
|
everything: all wget_us.ps wget_a4.ps wget_toc.html
|
|
|
|
|
2000-04-13 15:37:52 -04:00
|
|
|
sample.wgetrc.munged_for_texi_inclusion: sample.wgetrc
|
2000-11-05 02:06:41 -05:00
|
|
|
sed s/@/@@/g $(srcdir)/sample.wgetrc > sample.wgetrc.munged_for_texi_inclusion
|
2000-04-13 15:37:52 -04:00
|
|
|
|
|
|
|
wget.info: sample.wgetrc.munged_for_texi_inclusion wget.texi
|
1999-12-02 02:42:23 -05:00
|
|
|
-$(MAKEINFO)
|
|
|
|
|
|
|
|
#wget.cat: $(MAN)
|
|
|
|
# nroff -man $(srcdir)/$(MAN) > wget.cat
|
|
|
|
|
|
|
|
dvi: wget.dvi
|
|
|
|
|
|
|
|
wget.dvi: wget.texi
|
|
|
|
$(TEXI2DVI) $(srcdir)/wget.texi
|
|
|
|
|
|
|
|
wget_us.ps: wget.dvi
|
|
|
|
$(DVIPS) -t letter -o $@ wget.dvi
|
|
|
|
|
|
|
|
wget_a4.ps: wget.dvi
|
|
|
|
$(DVIPS) -t a4 -o $@ wget.dvi
|
|
|
|
|
|
|
|
wget_toc.html: wget.texi
|
|
|
|
$(TEXI2HTML) $(srcdir)/wget.texi
|
|
|
|
|
|
|
|
#
|
|
|
|
# Dependencies for installing
|
|
|
|
#
|
|
|
|
|
|
|
|
# install all the documentation
|
|
|
|
install: install.info install.wgetrc # install.man
|
|
|
|
|
|
|
|
# uninstall all the documentation
|
|
|
|
uninstall: uninstall.info # uninstall.man
|
|
|
|
|
|
|
|
# install info pages, creating install directory if necessary
|
|
|
|
install.info: wget.info
|
|
|
|
$(top_srcdir)/mkinstalldirs $(infodir)
|
2000-12-09 22:03:14 -05:00
|
|
|
-for file in wget.info wget.info-*[0-9]; do \
|
|
|
|
test -f $$file && $(INSTALL_DATA) $$file $(infodir)/$$file ; \
|
1999-12-02 02:42:23 -05:00
|
|
|
done
|
|
|
|
|
|
|
|
# install man page, creating install directory if necessary
|
|
|
|
#install.man:
|
|
|
|
# $(top_srcdir)/mkinstalldirs $(mandir)/man$(manext)
|
|
|
|
# $(INSTALL_DATA) $(srcdir)/$(MAN) $(mandir)/man$(manext)/$(MAN)
|
|
|
|
|
|
|
|
# install sample.wgetrc
|
|
|
|
install.wgetrc:
|
|
|
|
$(top_srcdir)/mkinstalldirs $(sysconfdir)
|
|
|
|
@if test -f $(WGETRC); then \
|
|
|
|
if cmp -s $(srcdir)/sample.wgetrc $(WGETRC); then echo ""; \
|
|
|
|
else \
|
|
|
|
echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new'; \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC).new; \
|
2000-04-13 00:37:51 -04:00
|
|
|
echo; \
|
2000-04-13 00:55:35 -04:00
|
|
|
echo "WARNING: Differing \`$(WGETRC)'"; \
|
|
|
|
echo " exists and has been spared. You might want to"; \
|
|
|
|
echo " consider merging in the new lines from"; \
|
|
|
|
echo " \`$(WGETRC).new'."; \
|
2000-04-13 00:37:51 -04:00
|
|
|
echo; \
|
|
|
|
echo "<Hit RETURN to acknowledge>\c"; \
|
|
|
|
read user_input; \
|
2000-04-13 00:55:35 -04:00
|
|
|
echo; \
|
1999-12-02 02:42:23 -05:00
|
|
|
fi; \
|
|
|
|
else \
|
|
|
|
$(INSTALL_DATA) $(srcdir)/sample.wgetrc $(WGETRC); \
|
|
|
|
fi
|
|
|
|
|
|
|
|
# uninstall info pages
|
|
|
|
uninstall.info:
|
|
|
|
$(RM) $(infodir)/wget.info*
|
|
|
|
|
|
|
|
# uninstall man page
|
|
|
|
#uninstall.man:
|
|
|
|
# $(RM) $(mandir)/man$(manext)/$(MAN)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Dependencies for cleanup
|
|
|
|
#
|
|
|
|
|
|
|
|
clean:
|
|
|
|
$(RM) *~ *.bak *.cat *.html
|
|
|
|
$(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.log
|
|
|
|
|
|
|
|
distclean: clean
|
2000-12-31 06:50:52 -05:00
|
|
|
$(RM) Makefile
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
realclean: distclean
|
|
|
|
$(RM) wget.info*
|
|
|
|
|
|
|
|
#
|
|
|
|
# Dependencies for maintenance
|
|
|
|
#
|
|
|
|
|
|
|
|
subdir = doc
|
|
|
|
|
|
|
|
Makefile: Makefile.in ../config.status
|
|
|
|
cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
|