makefile.in

来自「c语言实现的web http报文分析」· IN 代码 · 共 100 行

IN
100
字号
## Makefile for webalizer - a web server log analysis program## Copyright (C) 1997-2000  Bradford L. Barrett (brad@mrunix.net)## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2 of the License, or# (at your option) any later version, and provided that the above# copyright and permission notice is included with all distributed# copies of this or derived software.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details (file "COPYING").#prefix  = @prefix@exec_prefix = @exec_prefix@BINDIR = @bindir@MANDIR = @mandir@/man1ETCDIR = @ETCDIR@CC     = @CC@CFLAGS = @CFLAGS@LIBS   = @LIBS@DEFS   = -DETCDIR=\"@ETCDIR@\" @DEFS@ @OPTS@LDFLAGS= @LDFLAGS@INSTALL= @INSTALL@INSTALL_PROGRAM=@INSTALL_PROGRAM@INSTALL_DATA=@INSTALL_DATA@# where are the GD header files?GDLIB=@GDLIB@# Shouldn't have to touch below here!all: webalizerwebalizer:	webalizer.o webalizer.h hashtab.o hashtab.h  \		linklist.o linklist.h preserve.o preserve.h  \                dns_resolv.o dns_resolv.h parser.o parser.h  \                output.o output.h graphs.o graphs.h lang.h   \		webalizer_lang.h	$(CC) ${LDFLAGS} -o webalizer webalizer.o hashtab.o linklist.o preserve.o parser.o output.o dns_resolv.o graphs.o ${LIBS}	rm -f webazolver	@LN_S@ webalizer webazolverwebalizer.o:	webalizer.c webalizer.h parser.h output.h preserve.h \		graphs.h dns_resolv.h webalizer_lang.h	$(CC) ${CFLAGS} ${DEFS} -c webalizer.cparser.o:	parser.c parser.h webalizer.h lang.h	$(CC) ${CFLAGS} ${DEFS} -c parser.chashtab.o:	hashtab.c hashtab.h dns_resolv.h webalizer.h lang.h	$(CC) ${CFLAGS} ${DEFS} -c hashtab.clinklist.o:	linklist.c linklist.h webalizer.h lang.h	$(CC) ${CFLAGS} ${DEFS} -c linklist.coutput.o:	output.c output.h webalizer.h preserve.h \		hashtab.h graphs.h lang.h	$(CC) ${CFLAGS} ${DEFS} -c output.cpreserve.o:	preserve.c preserve.h webalizer.h parser.h   \		hashtab.h graphs.h lang.h	$(CC) ${CFLAGS} ${DEFS} -c preserve.cdns_resolv.o:	dns_resolv.c dns_resolv.h lang.h webalizer.h	$(CC) ${CFLAGS} ${DEFS} -c dns_resolv.cgraphs.o:	graphs.c graphs.h webalizer.h lang.h	$(CC) ${CFLAGS} ${DEFS} -I${GDLIB} -c graphs.cclean:	rm -f webalizer webazolver *.o usage*.png daily*.png hourly*.png	rm -f ctry*.png *.html *.hist *.current core *.gifdistclean: clean	rm -f webalizer.conf *.tar *.tgz *.Z *.tar.gz	rm -f Makefile webalizer_lang.h config.cache config.log config.status	@LN_S@ lang/webalizer_lang.@DEFAULT_LANG@ webalizer_lang.hinstall: all	$(INSTALL_PROGRAM) webalizer ${BINDIR}/webalizer	$(INSTALL_DATA) webalizer.1 ${MANDIR}/webalizer.1	$(INSTALL_DATA) sample.conf ${ETCDIR}/webalizer.conf.sample	rm -f ${BINDIR}/webazolver	@LN_S@ ${BINDIR}/webalizer ${BINDIR}/webazolveruninstall:	rm -f ${BINDIR}/webalizer	rm -f ${BINDIR}/webazolver	rm -f ${MANDIR}/webalizer.1	rm -f ${ETCDIR}/webalizer.conf.sample	rm -f webalizer_lang.h	@LN_S@ lang/webalizer_lang.@DEFAULT_LANG@ webalizer_lang.h

⌨️ 快捷键说明

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