📄 makefile.in
字号:
## Makefile for the Admin components## $Id: Makefile.in,v 2.1 1997/11/04 18:14:33 sxw Exp $##srcdir = @srcdir@VPATH = $(srcdir)SUBDIRS = idzebra zqueryall: this-all do-allinstall: do-install this-installclean: do-clean this-cleandistclean: do-distclean this-distcleanthis-all: all-yazthis-install: @(cd yaz/zoom; $(MAKE) $(MFLAGS) install)this-clean: @(cd yaz; $(MAKE) $(MFLAGS) clean)this-distclean: this-clean @(cd yaz; $(MAKE) $(MFLAGS) distclean) -rm -f Makefile config.status config.cache config.logall-yaz: @echo Making all in yaz @if (cd yaz; $(MAKE) $(MFLAGS)); \ then true; else exit 1; fi;DO_X = do-clean do-distclean do-all do-install$(DO_X): @target=`echo $@ | sed -e 's/^do-//'`; \ for dir in $(SUBDIRS); do \ echo Making $$target in $$dir; \ if (cd $$dir; $(MAKE) $(MFLAGS) $${target}); \ then true; else exit 1; fi; \ done
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -