📄 makefile.am
字号:
#
# Tell automake what it should do
AUTOMAKE_OPTIONS = foreign
MAINTAINERCLEANFILES=config.cache config.status config.log \
Makefile.in configure
SUBDIRS = @WEBSERVER@
all:
target="all"; \
list='$(SUBDIRS)'; \
for i in $$list; do \
echo "Making $$target in $$i"; \
if test "$$i" != "."; then \
(cd $$i && $(MAKE) $$target) || exit 1; \
fi; \
done;
apidocs: common/*.h
../../scandoc/scandoc.pl -i ../../scandoc/template.pl -p \
./docs/api/ -dproject="mod_jk Library" common/*.h common/*.c
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -