makefile

来自「linux 的引导程序源码The Microsoft&reg Windows&r」· 代码 · 共 51 行

TXT
51
字号
LATEX=latexRLATEX=./rlatexFIG2DEV=fig2devSHELL=/bin/shIMAGES=bootloader.tex map.tex image.tex parameter.tex other.tex.SUFFIXES:	.fig .tex .dvi .ps.fig.tex:		$(FIG2DEV) -L latex $*.fig $*.tex.tex.dvi:		$(RLATEX) $*all:		user.dvi tech.dvi user.ps tech.psuser.ps:	user.dvi		dvips -o user.ps user.dvitech.ps:	tech.dvi		dvips -o tech.ps tech.dviuser.dvi:	user.textech.dvi:	tech.tex $(IMAGES)../README:	user.tex		perl t2a.pl <user.tex >../README || { rm -f ../README; exit 1; }html:		user.ps tech.ps		latex2html -split 2 -link 2 -toc_depth 2 user		latex2html -split 1 -link 1 -toc_depth 1 techagain:		$(LATEX) user		$(LATEX) techtidy:		rm -f *~ *.toc *.aux *.logclean:		tidy		rm -f *.ps *.dvi		rm -Rf user techspotless:	clean		rm -f *.dvi $(IMAGES)dummies:		for n in $(IMAGES); do echo '(omitted)' >$$n; done

⌨️ 快捷键说明

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