📄 makefile
字号:
# Generated automatically from Makefile.in by configure.# $Id: Makefile.in,v 1.59 2002/03/24 22:20:19 jnelson Exp $.SUFFIXES:.SUFFIXES: .o .c.PHONY: clean mrclean distclean depend all distGCC_FLAGS = -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual\ -Wtraditional\ -Wshadow\ -Wconversion\ -Waggregate-return\ -Wmissing-prototypes\ -Wnested-externs\ -Wall \ -Wundef -Wwrite-strings -Wredundant-decls -Winlinesrcdir = .VPATH = .:./../extrasLDFLAGS = -gLIBS = CFLAGS = -g -O2 -pipe -Wall -I.# Change these if necessaryYACC = bison -y LEX = flex CC = gcc CPP = gcc -ESOURCES = alias.c boa.c buffer.c cgi.c cgi_header.c config.c escape.c \ get.c hash.c ip.c log.c mmap_cache.c pipe.c queue.c read.c \ request.c response.c select.c signals.c util.c sublog.cOBJS = y.tab.o lex.yy.o $(SOURCES:.c=.o) timestamp.o all: boa boa_indexerboa: $(OBJS) $(CC) -o $@ $^ $(LDFLAGS) $(LIBS) boa_indexer: index_dir.o escape.o $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)clean: rm -f $(OBJS) boa core lex.yy.c y.tab.c y.tab.h *~ boa_indexer index_dir.o distclean: mrcleanmrclean: clean rm -f config.status config.cache config.h Makefile config.log# parser dependenciesy.tab.c y.tab.h: boa_grammar.y $(YACC) -d $^lex.yy.c: boa_lexer.l $(LEX) $^# timestamptimestamp.o: $(SOURCES) boa_grammar.y boa_lexer.l# depend stuff.depend: $(CPP) -MM $(SOURCES) > .depend depend: -rm -f .depend $(MAKE) .depend include .depend# tagstags: $(SOURCES) ctags -o tags $^ *.h# distdist: $(MAKE) clean ./makedist.sh # object dumpboa.objdump: boa objdump --disassemble-all --source boa > $@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -