📄 makefile.in
字号:
## -*- makefile -*-## This file is based on `Makefile.in' from the sources of the## Tomas Abrahamsson's Emacs package artist-1.2.4 .## You can find artist in http://www.lysator.liu.se/~tab/artist/ .# What the GNU Emacs 21 binary is called on your systemEMACS = @EMACS@# Prefix for constructing installation directory pathsprefix = @prefix@exec_prefix = $(prefix)# Shared directory for read-only data filesdatadir = $(prefix)/share# Where to put the .el and .elc fileslispdir=$(datadir)/emacs/site-lisp# Installation commandINSTALL = @INSTALL@INSTALL_DATA = @INSTALL_DATA@# Various auxiliary programsTAR=tarsrcdir = @srcdir@VPATH = @srcdir@SOURCES = characters-gbk.el chinese-gbk.el fontset-gbk.el mule-gbk.el \ mule-gbk-bc.elOBJECTS = characters-gbk.elc chinese-gbk.elc fontset-gbk.elc mule-gbk.elc \ mule-gbk-bc.elc# For Unciodeuni_SOURCES = gbk-utf-mode.el subst-gbk.el subst2-gbk.el subst2-ksc.eluni_OBJECTS = gbk-utf-mode.elc subst-gbk.elc subst2-gbk.elc subst2-ksc.elcDISTFILES = $(SOURCES) $(uni_SOURCES) COPYING INSTALL \ README README.unicode README.mime ChangeLog TODO BUGS \ configure configure.in Makefile.in install-sh mkinstalldirsSHELL = /bin/sh#.PHONY: all clean dist distclean install \# installdirs ps uninstall.SUFFIXES:.SUFFIXES: .elc .el.el.elc: $(EMACS) -batch -l $(srcdir)/mule-gbk-bc.el \ -no-site-file -f batch-byte-compile $<all: $(OBJECTS) $(uni_OBJECTS)install: all installdirs for f in $(SOURCES) $(uni_SOURCES); do \ $(INSTALL_DATA) $(srcdir)/$$f $(lispdir); \ done; for f in $(OBJECTS) $(uni_OBJECTS); do \ $(INSTALL_DATA) $$f $(lispdir); \ done;# Make sure all installation directories actually exist# by making them if necessary.installdirs: mkinstalldirs $(srcdir)/mkinstalldirs $(lispdir)uninstall: -cd $(lispdir) && rm -f $(SOURCES) $(OBJECTS) \ $(uni_SOURCES) $(uni_OBJECTS)TAGS: $(SOURCES) $(uni_SOURCES) cd $(srcdir) && etags $(SOURCES) $(uni_SOURCES)clean: rm -f $(OBJECTS) $(uni_OBJECTS) -rm -f *.aux *.cp *.cps *.fn *.ky *.log *.pg *.toc *.tp *.vr -rm -f *.html rm -f TAGS core rm -f *~distclean: clean -rm -f *~ *.tar.gz rm -f Makefile config.status config.cache config.log${srcdir}/configure: configure.in cd ${srcdir} && autoconf Makefile: Makefile.in config.status ./config.status config.status: ${srcdir}/configure ./config.status --recheckdist: $(DISTFILES) version=`perl -ne 'print $$1 if /defconst mule-gbk-version \"(.*)\"/' \ mule-gbk.el`; \ distname=mule-gbk-$$version; \ rm -rf $$distname; \ mkdir $$distname; \ for file in $(DISTFILES); do \ ln $$file $$distname/$$file; \ done; \ $(TAR) -chz -f $$distname.tar.gz $$distname; \ rm -rf $$distname
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -