📄 makefile
字号:
# $Id: Makefile.in,v 1.59.2.15 2005/02/22 03:02:40 jnelson Exp $.SUFFIXES:.SUFFIXES: .o .c.PHONY: clean mrclean distclean all dist depend# The following gcc warning switches are too noisy to be useful checking# Boa for lint:# -Wtraditional -Wconversion -Wredundant-decls -Wunreachable-code# The following gcc warning switches should generate no warnings:GCC_FLAGS = -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wcast-qual \ -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs \ -Wall -W -Wno-unused -Winline -Wwrite-strings -Wundef -pedanticsrcdir = .VPATH = ./../extrasLDFLAGS = -gLIBS = CFLAGS = -g -O2 -pipe -WallCPPFLAGS = -I. -I.DEPEND = .dependCC = arm-linux-gcc CPP = arm-linux-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 range.c \ read.c request.c response.c signals.c util.c sublog.c \ select.c OBJS = $(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 *~ boa_indexer index_dir.o rm -f poll.o select.o access.o distclean: mrcleanmrclean: clean rm -f config.status config.cache config.h Makefile config.log# timestamptimestamp.o: $(SOURCES)# depend stuffdepend: $(SOURCES) $(CPP) $(CPPFLAGS) -MM $^ select.c poll.c access.c > $(DEPEND) -include $(DEPEND)# tagstags: $(SOURCES) ctags -o tags $^ *.h# object dumpboa.objdump: boa objdump --disassemble-all --source boa > $@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -