⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 linux中bash shell的源代码
💻
字号:
# Derived by hand from the generated readline-src/doc/Makefile# This makefile for Readline library documentation is in -*- text -*- mode.# Emacs likes it that way.# Copyright (C) 1996-2002 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, 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., 59 Temple Place, Suite 330, Boston, MA 02111 USA.topdir = .srcdir = .VPATH = .prefix = /usr/localinfodir = ${prefix}/infomandir = ${prefix}/manmanpfx = manman1ext = 1man1dir = $(mandir)/$(manpfx)$(man1ext)man3ext = 3man3dir = $(mandir)/$(manpfx)$(man3ext)SHELL = /bin/shRM = rm -fINSTALL = /usr/bin/install -cINSTALL_DATA = ${INSTALL} -m 644BUILD_DIR = .TEXINPUTDIR = $(srcdir)MAKEINFO    = LANGUAGE= makeinfoTEXI2DVI    = $(srcdir)/texi2dviTEXI2HTML   = $(srcdir)/texi2htmlQUIETPS     = #set this to -q to shut up dvipsPSDPI       = 300	# I don't have any 600-dpi printersDVIPS       = dvips -D ${PSDPI} $(QUIETPS) -o $@     # trickyRLSRC = $(srcdir)/rlman.texi $(srcdir)/rluser.texi \	$(srcdir)/rltech.texi $(srcdir)/version.texi \	$(srcdir)/rluserman.texiHISTSRC = $(srcdir)/history.texi $(srcdir)/hsuser.texi \	  $(srcdir)/hstech.texi $(srcdir)/version.texi# This should be a program that converts troff to an ascii-readable formatNROFF       = groff -Tascii# This should be a program that converts troff to postscriptGROFF       = groffDVIOBJ = readline.dvi history.dvi rluserman.dviINFOOBJ = readline.info history.info rluserman.infoPSOBJ = readline.ps history.ps rluserman.psHTMLOBJ = readline.html history.html rluserman.htmlINTERMEDIATE_OBJ = rlman.dviCREATED_DOCS = $(DVIOBJ) $(INFOOBJ) $(PSOBJ) $(HTMLOBJ).SUFFIXES:      .ps .txt .dviall: info dvi html ps nodvi: info htmlreadline.dvi: $(RLSRC)	TEXINPUTS=.:$(TEXINPUTDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/rlman.texi	mv rlman.dvi readline.dvireadline.info: $(RLSRC)	$(MAKEINFO) --no-split -I $(TEXINPUTDIR) -o $@ $(srcdir)/rlman.texirluserman.dvi: $(RLSRC)	TEXINPUTS=.:$(TEXINPUTDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/rluserman.texirluserman.info: $(RLSRC)	$(MAKEINFO) --no-split -I $(TEXINPUTDIR) -o $@ $(srcdir)/rluserman.texihistory.dvi: ${HISTSRC}	TEXINPUTS=.:$(TEXINPUTDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/history.texihistory.info: ${HISTSRC}	$(MAKEINFO) --no-split -I $(TEXINPUTDIR) -o $@ $(srcdir)/history.texireadline.ps:	readline.dvi	$(RM) $@	$(DVIPS) readline.dvirluserman.ps:	rluserman.dvi	$(RM) $@	$(DVIPS) rluserman.dvihistory.ps:	history.dvi	$(RM) $@	$(DVIPS) history.dvireadline.html:	${RLSRC}	$(TEXI2HTML) -menu -monolithic -I $(TEXINPUTDIR) $(srcdir)/rlman.texi	sed -e 's:rlman.html:readline.html:' rlman.html > readline.html	$(RM) rlman.htmlrluserman.html:	${RLSRC}	$(TEXI2HTML) -menu -monolithic -I $(TEXINPUTDIR) $(srcdir)/rluserman.texihistory.html:	${HISTSRC}	$(TEXI2HTML) -menu -monolithic -I $(TEXINPUTDIR) $(srcdir)/history.texiinfo:	$(INFOOBJ)dvi:	$(DVIOBJ)ps:	$(PSOBJ)html:	$(HTMLOBJ)clean:	$(RM) *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \	      *.fns *.kys *.tps *.vrs *.o coredistclean: clean	$(RM) $(CREATED_DOCS)	$(RM) $(INTERMEDIATE_OBJ)	$(RM) Makefilemostlyclean: cleanmaintainer-clean: clean	$(RM) $(CREATED_DOCS)	$(RM) $(INTERMEDIATE_OBJ)	$(RM) Makefileinstall:	@echo "This documentation should not be installed."uninstall:

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -