makefile.in

来自「harvest是一个下载html网页得机器人」· IN 代码 · 共 35 行

IN
35
字号
# Makefile for building pstext as part of the Harvest Indexer distribution## $Id: Makefile.in,v 2.2 1997/09/11 16:14:31 sxw Exp $prefix = @prefix@INSTALL_BINDIR	= $(prefix)/binINSTALL_LIBDIR	= $(prefix)/libINSTALL_MANDIR 	= $(prefix)/manCC		= @CC@INSTALL		= @INSTALL@INSTALL_BIN 	= @INSTALL_PROGRAM@INSTALL_FILE 	= @INSTALL_DATA@RANLIB		= @RANLIB@SUBDIRS          = libs pstextall: do-allclean: do-cleandistclean: do-distclean this-distcleaninstall: do-installthis-distclean:		-rm -f MakefileDO_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 + =
减小字号Ctrl + -
显示快捷键?