makefile.am

来自「精通tomcat书籍原代码,希望大家共同学习」· AM 代码 · 共 22 行

AM
22
字号
#
# 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 + =
减小字号Ctrl + -
显示快捷键?