📄 makefile.in
字号:
# Makefile for `wget' utility# Copyright (C) 1995, 1996, 1997, 2007,# 2008 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 3 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, see <http://www.gnu.org/licenses/>.## 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 PostScriptDVIPS = dvips -D 300# Program to convert texinfo files to htmlTEXI2HTML = texi2html -expandinfo -split_chaptertop_builddir = ..top_srcdir = @top_srcdir@srcdir = @srcdir@VPATH = @srcdir@prefix = @prefix@infodir = @infodir@mandir = @mandir@manext = 1sysconfdir = @sysconfdir@DESTDIR =INSTALL = @INSTALL@INSTALL_DATA = @INSTALL_DATA@RM = rm -fTEXI2POD = $(srcdir)/texi2pod.plPOD2MAN = @POD2MAN@MAN = wget.$(manext)WGETRC = $(sysconfdir)/wgetrcSAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion## Dependencies for building#all: wget.info @COMMENT_IF_NO_POD2MAN@$(MAN)everything: all wget_us.ps wget_a4.ps wget_toc.html$(SAMPLERCTEXI): $(srcdir)/sample.wgetrc sed s/@/@@/g $? > $@wget.info: $(srcdir)/wget.texi $(SAMPLERCTEXI) $(srcdir)/version.texi $(MAKEINFO) -I$(srcdir) $(srcdir)/wget.texi.SECONDARY: wget.podwget.pod: $(srcdir)/wget.texi $(srcdir)/version.texi $(TEXI2POD) $(srcdir)/wget.texi $@$(MAN): wget.pod $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@#wget.cat: $(MAN)# nroff -man $? > $@dvi: wget.dviwget.dvi: $(srcdir)/wget.texi $(TEXI2DVI) $(srcdir)/wget.texiwget_us.ps: wget.dvi $(DVIPS) -t letter -o $@ wget.dviwget_a4.ps: wget.dvi $(DVIPS) -t a4 -o $@ wget.dviwget_toc.html: $(srcdir)/wget.texi $(TEXI2HTML) $(srcdir)/wget.texi## Dependencies for installing## install all the documentationinstall: install.info install.wgetrc @COMMENT_IF_NO_POD2MAN@install.man# uninstall all the documentationuninstall: uninstall.info @COMMENT_IF_NO_POD2MAN@uninstall.man# install info pages, creating install directory if necessary# if the info pages are built in the build directory, they are used.# otherwise, the ones from the distribution are installed.install.info: wget.info $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir) -if test -f wget.info; then \ for file in wget.info wget.info-*[0-9]; do \ if test -f "$$file"; then \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/$$file" ; \ fi; \ done; \ else \ for file in $(srcdir)/wget.info $(srcdir)/wget.info-*[0-9]; do \ if test -f "$$file"; then \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/`basename $$file`" ; \ fi; \ done; \ fi# install man page, creating install directory if necessaryinstall.man: $(MAN) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man$(manext) $(INSTALL_DATA) $(MAN) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)# install sample.wgetrcinstall.wgetrc: $(srcdir)/sample.wgetrc $(top_srcdir)/mkinstalldirs $(DESTDIR)$(sysconfdir) @if test -f $(DESTDIR)$(WGETRC); then \ if cmp -s $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); then echo ""; \ else \ echo ' $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new'; \ $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC).new; \ echo; \ echo "WARNING: Differing \`$(DESTDIR)$(WGETRC)'"; \ echo " exists and has been spared. You might want to"; \ echo " consider merging in the new lines from"; \ echo " \`$(DESTDIR)$(WGETRC).new'."; \ echo; \ fi; \ else \ $(INSTALL_DATA) $(srcdir)/sample.wgetrc $(DESTDIR)$(WGETRC); \ fi# uninstall info pagesuninstall.info: $(RM) $(DESTDIR)$(infodir)/wget.info*# uninstall man pageuninstall.man: $(RM) $(DESTDIR)$(mandir)/man$(manext)/$(MAN)## Dependencies for cleanup#clean: $(RM) *~ *.bak *.cat *.pod *.html $(RM) *.dvi *.aux *.cp *.cps *.fn *.toc *.tp *.vr *.ps *.ky *.pg *.logdistclean: clean $(RM) Makefile $(RM) $(MAN)realclean: distclean $(RM) wget.info* $(RM) $(SAMPLERCTEXI)## Dependencies for maintenance#subdir = docMakefile: Makefile.in ../config.status cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -