📄 makefile.in
字号:
## Makefile for the Gatherer source directory## $Id: Makefile.in,v 2.3 1997/11/04 18:15:34 sxw Exp $#SUBDIRS = essence db enumerate gatherd mgmt example curlprefix = @prefix@INSTALL_BINDIR = $(prefix)/binINSTALL_LIBDIR = $(prefix)/libINSTALL_MANDIR = $(prefix)/manCC = @CC@INSTALL = @INSTALL@INSTALL_BIN = @INSTALL_PROGRAM@INSTALL_FILE = @INSTALL_DATA@RANLIB = @RANLIB@DEBUG_TOP = @DEBUG_TOP@all: lib-dir do-allclean: do-clean this-cleandistclean: do-distclean this-distcleaninstall: do-installthis-distclean: this-clean -rm -f Makefile include/autoconf.h config.status config.log \ config.cache *~ corethis-clean: -rm -f lib/*.a lib/corelib-dir: @if test ! -d lib; then \ mkdir lib; \ chmod a+x lib; \ 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 + -