📄 makefile.in
字号:
# Makefile.in# # This file is part of the t1lib-package! See documentation and Readme files# of the t1lib-package for copyright restrictions.## Targets provided: # all (default)# install# uninstall# clean# pdf (this is internally used only because it# interferes with the all-target) # ps (now=all-target)## Author: Rainer Menzner (Rainer.Menzner@web.de)# Date: 04/06/1997# Last modified: 2001-06-28#SHELL = /bin/shCC = @CC@CPP = @CPP@CFLAGS = @CFLAGS@OPTIONS = @OPTIONS@X_LIBS = @X_LIBS@TOPSRC = @top_srcdir@XPM_LIB = -lXpmXLIB = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@LDFLAGS = @LDFLAGS@LDLIBS = @LDLIBS@AR = ar rcRANLIB = @RANLIB@RM = rm -fX_CFLAGS = @X_CFLAGS@YACC = @YACC@LEX = @LEX@LEXLIB = @LEXLIB@ALLCFLAGS = $(CFLAGS) $(X_CFLAGS)SUBMAKE = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(ALLCFLAGS)' 'OPTIONS=$(OPTIONS)'@SET_MAKE@INSTALL = @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA = @INSTALL_DATA@MKINSTALLDIRS = @top_srcdir@/ac-tools/mkinstalldirsprefix = @prefix@exec_prefix = @exec_prefix@includedir = @includedir@bindir = @bindir@datadir = @datadir@libdir = @libdir@mandir = @mandir@/man1manext = .1no_x = @no_x@# targets to build all: t1lib_doc.pst1lib_doc.dvi: t1lib_doc.tex intro.tex getstart.tex xglyph.tex ut1lib.tex xinterface.tex internals.tex type1afm.tex latex t1lib_doc.tex makeindex t1lib_doc latex t1lib_doc.tex latex t1lib_doc.tex.PHONY: cleanps: t1lib_doc.pst1lib_doc.ps: t1lib_doc.dvi dvips t1lib_docpdf: t1lib_doc.tex intro.tex getstart.tex xglyph.tex ut1lib.tex xinterface.tex internals.tex type1afm.tex pdflatex t1lib_doc.tex makeindex t1lib_doc pdflatex t1lib_doc.tex pdflatex t1lib_doc.texclean: dummy $(RM) \#*\# *~ *.log *.aux *.bak *.dvi *.toc *.ilg *.idx *.ind *.out t1lib_doc.psinstall: dummy if (test -f t1lib_doc.ps) \ then \ $(MKINSTALLDIRS) @T1LIB_DATA_DIR@/doc; \ $(INSTALL_DATA) t1lib_doc.ps @T1LIB_DATA_DIR@/doc; \ fi; if (test -f t1lib_doc.pdf) \ then \ $(MKINSTALLDIRS) @T1LIB_DATA_DIR@/doc; \ $(INSTALL_DATA) t1lib_doc.pdf @T1LIB_DATA_DIR@/doc; \ fi;uninstall: dummy $(RM) -R @T1LIB_DATA_DIR@/docdummy:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -