makefile.am

来自「Internet Phone, Chat, Conferencing」· AM 代码 · 共 91 行

AM
91
字号
## Makefile.am for http module## ----------------------------------------------------------------------# Header pathsINCLUDES = 	-I$(srcdir)/../bnf -I../bnf \		-I$(srcdir)/../msg -I../msg \		-I$(srcdir)/../url -I../url \		-I$(srcdir)/../su -I../su -I../su# ----------------------------------------------------------------------# Build targetsnoinst_LTLIBRARIES = 	libhttp.lanoinst_PROGRAMS = 	test_httpTESTS = 		test_http# ----------------------------------------------------------------------# Rules for building the targetsPUBLIC_H = 		sofia-sip/http.h sofia-sip/http_header.h \			sofia-sip/http_parser.h sofia-sip/http_tag_class.h \			sofia-sip/http_status.h sofia-sip/http_hclasses.hBUILT_H = 		sofia-sip/http_protos.h sofia-sip/http_tag.h BUILT_C = 		http_tag.c http_tag_ref.c http_parser_table.cBUILT_SOURCES = 	$(BUILT_H) $(BUILT_C)nobase_include_sofia_HEADERS = $(BUILT_H) $(PUBLIC_H) libhttp_la_SOURCES = 	$(INTERNAL_H) \			http_parser.c http_header.c \			http_basic.c http_extra.c \			http_status.c http_tag_class.c \			$(BUILT_C)COVERAGE_INPUT = 	$(libhttp_la_SOURCES) $(include_sofia_HEADERS)LDADD = 		libhttp.la \			../bnf/libbnf.la \			../msg/libmsg.la \			../url/liburl.la \			../su/libsu.latest_http_LDFLAGS = 	-static# ----------------------------------------------------------------------# Install and distribution rulesEXTRA_DIST =		Doxyfile http.docs \			sofia-sip/http_protos.h.in \			sofia-sip/http_tag.h.in \			http_parser_table.c.in \			http_tag.c.in# ----------------------------------------------------------------------# Sofia specific rulesinclude ../sofia.amTAG_DLL_FLAGS = DLLREF=1MSG_PARSER_AWK = $(srcdir)/../msg/msg_parser.awkAWK_HTTP_AWK = $(AWK) -f $(MSG_PARSER_AWK) module=httpsofia-sip/http_tag.h: sofia-sip/http_tag.h.in $(MSG_PARSER_AWK)sofia-sip/http_protos.h: sofia-sip/http_protos.h.in $(MSG_PARSER_AWK)http_tag.c: http_tag.c.in $(MSG_PARSER_AWK)http_parser_table.c: http_parser_table.c.in $(MSG_PARSER_AWK)sofia-sip/http_protos.h: sofia-sip/http.h	@-mkdir sofia-sip 2>/dev/null || true	$(AWK_HTTP_AWK) PR=$@ TEMPLATE=$(srcdir)/sofia-sip/http_protos.h.in $<sofia-sip/http_tag.h: sofia-sip/http.h	@-mkdir sofia-sip 2>/dev/null || true	$(AWK_HTTP_AWK) PR=$@ TEMPLATE=$(srcdir)/sofia-sip/http_tag.h.in $<http_tag.c: sofia-sip/http.h	$(AWK_HTTP_AWK) PR=$@ TEMPLATE=$(srcdir)/http_tag.c.in $<http_parser_table.c: sofia-sip/http.h	$(AWK_HTTP_AWK) PT=$@ TEMPLATE=$(srcdir)/http_parser_table.c.in \		MC_HASH_SIZE=127 $<

⌨️ 快捷键说明

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