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

📄 makefile.in

📁 harvest是一个下载html网页得机器人
💻 IN
字号:
# $Id: Makefile.in,v 2.3 1997/11/04 18:15:04 sxw Exp $srcdir = @srcdir@VPATH = $(srcdir)prefix = @prefix@INSTALL_BINDIR  = $(prefix)/binINSTALL_LIBDIR  = $(prefix)/libINSTALL_UTILDIR	= $(INSTALL_LIBDIR)/gathererINSTALL_MANDIR  = $(prefix)/manCC              = @CC@INSTALL         = @INSTALL@INSTALL_BIN     = @INSTALL_PROGRAM@INSTALL_FILE    = @INSTALL_DATA@RANLIB          = @RANLIB@DEBUG           = $(DEBUG_TOP) #-O #-g #-DDEBUGDEBUG_LIBS      =CFLAGS          = $(DEBUG) -I. -I$(srcdir)# You shouldn't need to change anything after this point.PURIFY=purifyETAGS=etagsSHELL=/bin/shPROG1=sgmlsSRCS1=lexrf.c pcbrf.c synrf.c context.c md1.c md2.c pars1.c pars2.c serv.c \      sgml1.c sgml2.c sgmlmsg.c sgmlxtrn.c traceset.c entgen.c sgmlio.c \      xfprintf.c main.c unixproc.c sgmldecl.c version.c strerror.c getopt.c \      msgcat.c lineout.c ambig.c lextaba.c catalog.cOBJS1=lexrf.o pcbrf.o synrf.o context.o md1.o md2.o pars1.o pars2.o serv.o \      sgml1.o sgml2.o sgmlmsg.o sgmlxtrn.o traceset.o entgen.o sgmlio.o \      xfprintf.o main.o unixproc.o sgmldecl.o version.o strerror.o getopt.o \      msgcat.o lineout.o ambig.o lextaba.o catalog.oPROG2=sgmlsaspOBJS2=sgmlsasp.o replace.o sgmls.o strerror.o getopt.oSRCS2a=sgmlsasp.c replace.c sgmls.cSRCS2=$(SRCS2a) strerror.c getopt.cPROG3=rastSRCS3a=rast.cSRCS3=$(SRCS3a) sgmls.c strerror.cOBJS3=rast.o sgmls.o strerror.o getopt.oPROG4=genlexSRCS4a=genlex.c ebcdic.cSRCS4=$(SRCS4a) lextaba.c lexrf.cOBJS4=genlex.o ebcdic.o lextaba.o lexrf.oSRCS=$(SRCS1) $(SRCS2a) $(SRCS3a) $(SRCS4a) lextabe.cHDRS=action.h adl.h entity.h error.h etype.h sgmldecl.h keyword.h lextoke.h \     msg.h sgmlaux.h sgmlfnsm.h sgmlincl.h sgmlmain.h lineout.h sgmlxtrn.h \     source.h synxtrn.h tools.h trace.h context.h getopt.h msgcat.h std.h \     appl.h sgmls.h sgmlsasp.h replace.h lexcode.h latin1.h ebcdic.h \     catalog.h alloc.hPROGS=$(PROG1) $(PROG2) $(PROG3)# Miscellaneous files to go in the distributionMISC=README NEWS INSTALL ChangeLog LICENSE TODO Makefile Makefile.bcc \     Makefile.vms Makefile.cms dos.cfg unix.cfg thinkc.cfg vms.cfg cms.cfg \     dosproc.c portproc.c stklen.c sgmls.pl configure.SUFFIXES: .man .txt.man.txt:	-rm -f $@	$(TBL) $< | $(NROFF) -man >$@all: $(PROGS)$(PROG1): $(OBJS1)	$(CC) -o $(PROG1) $(LDFLAGS) $(OBJS1) $(LIBS)$(PROG1).pure: $(OBJS1)	$(PURIFY) $(CC) -o $(PROG1).pure $(LDFLAGS) $(OBJS1) $(LIBS)$(PROG1).cl:	#setopt program_name ./$(PROG1)	#load -C $(SRCS1)$(PROG2): $(OBJS2)	$(CC) -o $(PROG2) $(LDFLAGS) $(OBJS2) $(LIBS)$(PROG2).pure: $(OBJS2)	$(PURIFY) $(CC) -o $(PROG2).pure $(LDFLAGS) $(OBJS2) $(LIBS)$(PROG2).cl:	#setopt program_name ./$(PROG2)	#load -C $(SRCS2)$(PROG3): $(OBJS3)	$(CC) -o $(PROG3) $(LDFLAGS) $(OBJS3) $(LIBS)$(PROG3).pure: $(OBJS3)	$(PURIFY) $(CC) -o $(PROG3).pure $(LDFLAGS) $(OBJS3) $(LIBS)$(PROG3).cl:	#setopt program_name ./$(PROG3)	#load -C $(SRCS3)$(PROG4): $(OBJS4)	$(CC) -o $(PROG4) $(LDFLAGS) $(OBJS4) $(LIBS)config.h: unix.cfg configure	@echo Generating config.h from unix.cfg.	@echo If this fails, copy unix.cfg to config.h and then edit config.h.	@echo This may take a minute or two...#	chmod +x $(srcdir)/configure	CC="$(CC)" CFLAGS="$(CFLAGS)" LIBS="$(LIBS)" prefix="$(prefix)" \	config="$(srcdir)/unix.cfg"  $(srcdir)/configurelextabe.c: genlex	-rm -f lextabe.c	./genlex >$@install:	all	@for f in $(PROGS); do \		echo $(INSTALL_BIN) $$f $(INSTALL_UTILDIR)/$$f; \		$(INSTALL_BIN) $$f $(INSTALL_UTILDIR)/$$f; \	doneclean:	-rm -f *.o $(PROGS) core a.outdistclean: clean	-rm -f $(FMANPAGES) config.h Makefiledepend: $(SRCS)# Do not delete this line.lexrf.o : lexrf.c config.h latin1.h entity.h tools.h msgcat.h catalog.h synxtrn.h \  action.h lexcode.hpcbrf.o : pcbrf.c config.h latin1.h entity.h tools.h msgcat.h catalog.h action.h \  synxtrn.h adl.hsynrf.o : synrf.c config.h latin1.h entity.h tools.h msgcat.h catalog.h synxtrn.h \  adl.hcontext.o : context.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.h context.hmd1.o : md1.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h catalog.h \  action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h sgmlxtrn.h \  trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hmd2.o : md2.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h catalog.h \  action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h sgmlxtrn.h \  trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hpars1.o : pars1.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hpars2.o : pars2.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hserv.o : serv.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hsgml1.o : sgml1.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hsgml2.o : sgml2.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hsgmlmsg.o : sgmlmsg.c config.h latin1.h sgmlaux.h std.h entity.h tools.h msgcat.h \  catalog.h sgmldecl.h msg.hsgmlxtrn.o : sgmlxtrn.c sgmlincl.h config.h latin1.h std.h entity.h tools.h \  msgcat.h catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h \  synxtrn.h sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.htraceset.o : traceset.c sgmlincl.h config.h latin1.h std.h entity.h tools.h \  msgcat.h catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h \  synxtrn.h sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hentgen.o : entgen.c config.h latin1.h sgmlaux.h std.h entity.h tools.h msgcat.h \  catalog.h sgmldecl.hsgmlio.o : sgmlio.c config.h latin1.h sgmlaux.h std.h entity.h tools.h msgcat.h \  catalog.h sgmldecl.hxfprintf.o : xfprintf.c config.h latin1.hmain.o : main.c config.h latin1.h std.h getopt.h entity.h tools.h msgcat.h catalog.h \  adl.h sgmlmain.h appl.h alloc.hunixproc.o : unixproc.c config.h latin1.h std.h entity.h tools.h msgcat.h catalog.h \  appl.hsgmldecl.o : sgmldecl.c sgmlincl.h config.h latin1.h std.h entity.h tools.h \  msgcat.h catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h \  synxtrn.h sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hversion.o : version.cstrerror.o : strerror.c config.h latin1.hgetopt.o : getopt.c config.h latin1.hmsgcat.o : msgcat.c config.h latin1.h std.h msgcat.hlineout.o : lineout.c config.h latin1.h std.h entity.h tools.h msgcat.h catalog.h \  adl.h sgmlmain.h lineout.h appl.hambig.o : ambig.c sgmlincl.h config.h latin1.h std.h entity.h tools.h msgcat.h \  catalog.h action.h adl.h error.h etype.h keyword.h lextoke.h source.h synxtrn.h \  sgmlxtrn.h trace.h sgmlmain.h sgmlaux.h sgmldecl.h sgmlfnsm.hlextaba.o : lextaba.c config.h latin1.h entity.h tools.h msgcat.h catalog.h \  lexcode.h sgmldecl.h lextoke.hcatalog.o : catalog.c config.h latin1.h std.h catalog.h alloc.hsgmlsasp.o : sgmlsasp.c sgmlsasp.h config.h latin1.h std.h sgmls.h replace.h \  getopt.hreplace.o : replace.c sgmlsasp.h config.h latin1.h std.h replace.hsgmls.o : sgmls.c config.h latin1.h std.h sgmls.h lineout.hrast.o : rast.c config.h latin1.h std.h sgmls.h getopt.hgenlex.o : genlex.c config.h latin1.h std.h tools.hebcdic.o : ebcdic.c ebcdic.hlextabe.o : lextabe.c config.h latin1.h entity.h tools.h msgcat.h catalog.h \  sgmldecl.h

⌨️ 快捷键说明

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