📄 makefile.am
字号:
# Copyright (C) 2001 Cluster File Systems, Inc.## This code is issued under the GNU General Public License.# See the file COPYING in this distributionLYX2PDF = lyx --export pdfLYX2TXT = lyx --export textLYX2HTML = lyx --export htmlSUFFIXES = .lin .lyx .pdf .sgml .html .txt .fig .epsif DOC DOCS = portals3.pdfelse DOCS =endifIMAGES = file.eps flow_new.eps get.eps mpi.eps portals.eps put.epsLYXFILES= portals3.lyxMAINTAINERCLEANFILES = $(IMAGES) $(DOCS) $(GENERATED)GENERATED = EXTRA_DIST = $(DOCS) $(IMAGES) $(LYXFILES) all: $(DOCS)# update date and version in documentdate := $(shell date +%x)tag := $(shell echo '$$Name: v1_6_5_RC4 $$' | sed -e 's/^\$$Na''me: *\$$$$/HEAD/; s/^\$$Na''me: \(.*\) \$$$$/\1/')addversion = sed -e 's|@T''AG@|$(tag)|g; s|@VER''SION@|$(VERSION)|g; s|@DA''TE@|$(date)|g'# Regenerate when the $(VERSION) or $Name: v1_6_5_RC4 $ changes..INTERMEDIATE: $(GENERATED)$(GENERATED) : %.lyx: %.lin Makefile $(addversion) $< > $@.lyx.pdf: @$(LYX2PDF) $< || printf "\n*** Warning: not creating PDF docs; install lyx to rectify this\n".lyx.txt: @$(LYX2TXT) $< || printf "\n*** Warning: not creating text docs; install lyx to rectify this\n".lyx.html: @$(LYX2HTML) $< || printf "\n*** Warning: not creating HTML docs; install lyx to rectify this\n".fig.eps: -fig2dev -L eps $< > $@portals3.pdf portals3.txt portals3.html: $(IMAGES) portals3.lyxsyncweb: portals3.pdf# cp lustre.pdf /usr/src/www/content/lustre/docs/lustre.pdf# ( cd /usr/src/www ; make lustre ; make synclustre )
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -