⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 Apache HTTP Server 是一个功能强大的灵活的与HTTP/1.1相兼容的web服务器.这里给出的是Apache HTTP服务器的源码。
💻 IN
字号:
CLEAN_TARGETS = gen_test_char test_char.h gen_uri_delims uri_delims.h \	ApacheCoreOS2.defDISTCLEAN_TARGETS = httpd.expEXTRACLEAN_TARGETS = export_files exports.c export_vars.hSUBDIRS = mpmLTLIBRARY_NAME    = libmain.laLTLIBRARY_SOURCES = \    test_char.h \	config.c log.c main.c vhost.c util.c \	util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \	rfc1413.c connection.c listen.c \	mpm_common.c util_charset.c util_debug.c util_xml.c \	util_filter.c exports.c buildmark.c \	scoreboard.c error_bucket.c protocol.c core.c request.c provider.c \	eoc_bucket.cTARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.expinclude $(top_builddir)/build/rules.mkinclude $(top_srcdir)/build/library.mkgen_test_char_OBJECTS = gen_test_char.lo util_debug.logen_test_char: $(gen_test_char_OBJECTS)	$(LINK) $(EXTRA_LDFLAGS) $(gen_test_char_OBJECTS) $(EXTRA_LIBS)test_char.h: gen_test_char	./gen_test_char > test_char.hutil.lo: test_char.hEXPORT_DIRS = $(top_srcdir)/include $(top_srcdir)/os/$(OS_DIR) $(top_srcdir)/modules/httpEXPORT_DIRS_APR = $(APR_INCLUDEDIR) $(APU_INCLUDEDIR)# If export_files is a dependency here, but we remove it during this stage,# when exports.c is generated, make will not detect that export_files is no# longer here and deadlock.  So, export_files can't be a dependency of# delete-exports.delete-exports:	@if test -f exports.c; then \	    if test -f export_files; then \	        files=`cat export_files`; \	        headers="`find $$files -newer exports.c`"; \	        if test -n "$$headers"; then \	           echo Found newer headers. Will rebuild exports.c.; \	           echo rm -f exports.c export_files; \	           rm -f exports.c export_files; \	        fi; \	    else \	        rm -f exports.c; \	    fi; \	fiexport_files:	tmp=export_files_unsorted.txt; \	rm -f $$tmp && touch $$tmp; \	for dir in $(EXPORT_DIRS); do \	    ls $$dir/*.h >> $$tmp; \	done; \	for dir in $(EXPORT_DIRS_APR); do \	    ls $$dir/ap[ru].h >> $$tmp; \	    ls $$dir/ap[ru]_*.h >> $$tmp; \	done; \	sort -u $$tmp > $@; \	rm -f $$tmpexports.c: export_files	$(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@export_vars.h: export_files	$(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $?` > $@# Rule to make def file for OS/2 core dllApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_header.def	cat $(top_srcdir)/os/$(OS_DIR)/core_header.def > $@	$(CPP) $< $(ALL_CPPFLAGS) $(ALL_INCLUDES) | grep "ap_hack_" | sed -e 's/^.*[)]\(.*\);$$/  "\1"/' >> $@	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep "^[a-z]" | sed -e 's/^\(.*\)$$/  "\1"/' >> $@# Rule to make exp file for AIX DSOshttpd.exp: exports.c export_vars.h	@echo "#! ." > $@	@echo "* This file was AUTOGENERATED at build time." >> $@	@echo "* Please do not edit by hand." >> $@	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$$/\1/' >> $@	$(CPP) $(ALL_CPPFLAGS) $(ALL_INCLUDES) export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$$/d' >> $@

⌨️ 快捷键说明

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