⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 harvest是一个下载html网页得机器人
💻 IN
字号:
#/* Copyright (c) 1994 Burra Gopal, Udi Manber.  All Rights Reserved. */# Makefile for the compress library -- agrep should be linked with it in case# it wants to search for patterns in a compressed file.# YOU DON'T HAVE TO CHANGE ANYTHING BELOW THIS LINEsrcdir = @srcdir@VPATH  = @srcdir@SHELL  = /bin/shCC     = @CC@RANLIB = @RANLIB@AR     = ar # You may have to alter this to find ar on your systemINSTALL		= @INSTALL@INSTALL_PROGRAM = @INSTALL_PROGRAM@INSTALL_DATA	= @INSTALL_DATA@DEFS		= @DEFS@prefix = @prefix@exec_prefix = @exec_prefix@binprefix =manprefix =bindir = $(exec_prefix)/binlibdir = $(exec_prefix)/libmandir = $(prefix)/man/man1manext = 1INDEX = ../indexINDEXSRC = $(srcdir)/$(INDEX)AGREP = ../agrepAGREPSRC = $(srcdir)/$(AGREP)TEMPLATE = ../../../../../src/commonTEMPLATESRC = $(TEMPLATE)# Harvest only needs lib - removed tbuild cast uncast testall: libCFLAGS = @CFLAGS@ $(DEBUG_TOP)ALL_CFLAGS    = $(CFLAGS) $(DEFS) -I$(INDEXSRC) -I$(AGREPSRC) -I$(TEMPLATESRC)/include.c.o:		$(CC) -c $(ALL_CFLAGS) $<LIBOBJ = hash.o string.o misc.o quick.o cast.o uncast.o tsimpletest.o tmemlook.o tbuild.oLIB = libcast.aLINKFLAGS	= @LINKFLAGS@lib: $(LIBOBJ)	$(AR) rcv $(LIB) $(LIBOBJ)	$(RANLIB) $(LIB)test: hash.o string.o misc.o test.o quick.o tsimpletest.o tmemlook.o cast.o uncast.o	 $(CC) -o test hash.o string.o misc.o test.o quick.o tsimpletest.o tmemlook.o cast.o uncast.otbuild: hash.o string.o misc.o tbuild.o main_tbuild.o defs.h	 $(CC) -o tbuild hash.o string.o misc.o tbuild.o main_tbuild.ocast: main_cast.o $(LIB)	 $(CC) -o cast main_cast.o $(LIBOBJ)uncast: main_uncast.o $(LIB)	$(CC) -o uncast main_uncast.o $(LIBOBJ)hash.o: defs.h $(INDEXSRC)/glimpse.hstring.o: defs.h $(INDEXSRC)/glimpse.hmisc.o: defs.h $(INDEXSRC)/glimpse.hquick.o: defs.h $(INDEXSRC)/glimpse.hcast.o: defs.h $(INDEXSRC)/glimpse.huncast.o: defs.h $(INDEXSRC)/glimpse.hmain_cast.o: defs.h $(INDEXSRC)/glimpse.hmain_uncast.o: defs.h $(INDEXSRC)/glimpse.htsimpletest.o: defs.h $(INDEXSRC)/glimpse.htmemlook.o: defs.h $(INDEXSRC)/glimpse.htest.o : test.cclean:	rm -f *.o $(LIB) core test cast uncast tbuild a.outdistclean: clean	-rm -f Makefile

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -