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

📄 makefile.in

📁 harvest是一个下载html网页得机器人
💻 IN
字号:
# (c) Copyright 1992, 1993 by Panagiotis Tsirigotis# All rights reserved.  The file named COPYRIGHT specifies the terms# and conditions for redistribution.## $Id: Makefile.in,v 2.4 2000/02/03 12:45:55 sxw Exp $### Available entries:#     lib         --> creates the library#     install     --> installs the library (archive, man page(s), header(s))#     uninstall   --> uninstall the library#     clean       --> removes all .o and .a files#     spotless    --> clean + uninstall#     lint        --> lints a file (usage: make lint MODULE=foo.c)#     tags        --> creates a tags file (from the SOURCES and HEADERS)#     checkout    --> checkout all files#     dist        --> distribution support#srcdir = @srcdir@VPATH = $(srcdir)NAME           = sioVERSION        = 1.6.2HEADERS        = sio.h impl.h events.h sioconf.hSOURCES        = sprint.c sio.c siosup.cOBJECTS        = sprint.o sio.o siosup.oMANFILES       = sio.3 Sprint.3INCLUDEFILES   = sio.hLIBDIR         = ../../libINCLUDEDIR     = ../../include## Available flags:#  -DDEBUG           :  enables assertions in the code. A failed assertion#                       terminates the program#  -DEVENTS          :  enables code that records events (currently limited#                       to which functions have been called on a given fd)#                       and code that accesses the event buffers.#  -DLITTLE_ENDIAN   :  says that the machine is a little endian. This is#                       needed if you enable EVENTS and your machine is a#                       little endian (big endian is the default).#DEFS           = -DHAS_ISATTY -D__STRICT_ANSI__ -DPROTOTYPESVERSION_DEF    = -DVERSION=\"SIO_Version_$(VERSION)\"CPP_DEFS       = $(VERSION_DEF) $(DEFS)DEBUG          = $(DEBUG_TOP) # -DDEBUGCPP_FLAGS      = $(CPP_DEFS)CC_FLAGS       = $(DEBUG)CFLAGS         = $(CPP_FLAGS) $(CC_FLAGS)INSTALL        = installbsd -cFMODE          = -m 640       # used by installRANLIB         = ranlibPAGER          = lessprefix = @prefix@INSTALL_BINDIR	= $(prefix)/binINSTALL_LIBDIR	= $(prefix)/libINSTALL_MANDIR 	= $(prefix)/manCC		= @CC@INSTALL		= @INSTALL@INSTALL_BIN 	= @INSTALL_PROGRAM@INSTALL_FILE 	= @INSTALL_DATA@RANLIB		= @RANLIB@LIBNAME        = lib$(NAME).aall:	$(LIBNAME)install:$(LIBNAME): $(OBJECTS)	ar r $@ $?	$(RANLIB) $@clean:	-rm -f $(OBJECTS) $(LIBNAME) coredistclean: clean	-rm -f Makefile

⌨️ 快捷键说明

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