blob: f6f8de794fa3f25887a3e500086facb3ea4bccee [file] [log] [blame]
Igor Sysoeva8fa0a62003-11-25 20:44:56 +00001
2CORE_MODULES="ngx_core_module ngx_errlog_module"
3
4CORE_INCS="-I src/core"
5
6CORE_DEPS="src/core/nginx.h \
7 src/core/ngx_config.h \
Igor Sysoeve89c4582003-12-19 08:15:11 +00008 src/core/ngx_atomic.h \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +00009 src/core/ngx_log.h \
10 src/core/ngx_alloc.h \
11 src/core/ngx_array.h \
12 src/core/ngx_table.h \
13 src/core/ngx_hunk.h \
14 src/core/ngx_string.h \
15 src/core/ngx_parse.h \
16 src/core/ngx_inet.h \
17 src/core/ngx_file.h \
Igor Sysoev865c1502003-11-30 20:03:18 +000018 src/core/ngx_crc.h \
Igor Sysoevf5003d82003-12-04 14:53:00 +000019 src/core/ngx_rbtree.h \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000020 src/core/ngx_times.h \
21 src/core/ngx_connection.h \
Igor Sysoev3c3ca172004-01-05 20:55:48 +000022 src/core/ngx_cycle.h \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000023 src/core/ngx_conf_file.h \
24 src/core/ngx_garbage_collector.h"
25
26CORE_SRCS="src/core/nginx.c \
27 src/core/ngx_log.c \
28 src/core/ngx_alloc.c \
29 src/core/ngx_array.c \
30 src/core/ngx_hunk.c \
31 src/core/ngx_output_chain.c \
32 src/core/ngx_string.c \
33 src/core/ngx_parse.c \
34 src/core/ngx_inet.c \
35 src/core/ngx_file.c \
Igor Sysoevf5003d82003-12-04 14:53:00 +000036 src/core/ngx_rbtree.c \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000037 src/core/ngx_times.c \
Igor Sysoev3c3ca172004-01-05 20:55:48 +000038 src/core/ngx_connection.c \
39 src/core/ngx_cycle.c \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000040 src/core/ngx_conf_file.c \
41 src/core/ngx_garbage_collector.c"
42
43
Igor Sysoeve89c4582003-12-19 08:15:11 +000044REGEX_DEPS="src/core/ngx_regex.h"
45REGEX_SRCS="src/core/ngx_regex.c"
46
47
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000048EVENT_MODULES="ngx_events_module ngx_event_core_module"
49
50EVENT_INCS="-I src/event -I src/event/modules"
51
52EVENT_DEPS="src/event/ngx_event.h \
53 src/event/ngx_event_timer.h \
54 src/event/ngx_event_connect.h \
55 src/event/ngx_event_pipe.h"
56
57EVENT_SRCS="src/event/ngx_event.c \
58 src/event/ngx_event_timer.c \
59 src/event/ngx_event_close.c \
60 src/event/ngx_event_accept.c \
61 src/event/ngx_event_connect.c \
62 src/event/ngx_event_pipe.c"
63
64
65SELECT_MODULE="ngx_select_module"
66SELECT_SRCS=src/event/modules/ngx_select_module.c
67
68POLL_MODULE="ngx_poll_module"
69POLL_SRCS=src/event/modules/ngx_poll_module.c
70
71KQUEUE_MODULE="ngx_kqueue_module"
72KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c
73
74DEVPOLL_MODULE="ngx_devpoll_module"
75DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c
76
77IOCP_MODULE="ngx_iocp_module"
78IOCP_SRCS=src/event/modules/ngx_iocp_module.c
79
80AIO_MODULE="ngx_aio_module"
81AIO_SRCS=src/event/modules/ngx_aio_module.c
82
83
84UNIX_INCS="$CORE_INCS $EVENT_INCS -I src/os/unix"
85
86UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \
87 src/os/unix/ngx_time.h \
88 src/os/unix/ngx_types.h \
89 src/os/unix/ngx_errno.h \
90 src/os/unix/ngx_files.h \
91 src/os/unix/ngx_process.h \
92 src/os/unix/ngx_socket.h \
93 src/os/unix/ngx_os.h"
94
95UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \
96 src/os/unix/ngx_time.c \
Igor Sysoevdc867cd2003-12-14 20:10:27 +000097 src/os/unix/ngx_errno.c \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +000098 src/os/unix/ngx_sendv.c \
99 src/os/unix/ngx_files.c \
100 src/os/unix/ngx_socket.c \
101 src/os/unix/ngx_recv.c \
102 src/os/unix/ngx_readv_chain.c \
103 src/os/unix/ngx_writev_chain.c \
104 src/os/unix/ngx_posix_init.c \
105 src/os/unix/ngx_process.c \
106 src/os/unix/ngx_daemon.c"
107
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000108FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h
109FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c
110FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c
111
112
Igor Sysoevc0f8d912003-11-26 15:42:18 +0000113LINUX_DEPS=src/os/unix/ngx_linux_config.h
114LINUX_SRCS=src/os/unix/ngx_linux_init.c
115LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c
116
117
118SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h
119SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c
Igor Sysoev0e499db2003-11-27 07:45:22 +0000120SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c
Igor Sysoevc0f8d912003-11-26 15:42:18 +0000121
122
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000123WIN32_INCS="$CORE_INCS $EVENT_INCS -I src/os/win32"
124
125WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \
126 src/os/win32/ngx_win32_config.h \
127 src/os/win32/ngx_time.h \
128 src/os/win32/ngx_types.h \
129 src/os/win32/ngx_errno.h \
130 src/os/win32/ngx_files.h \
131 src/os/win32/ngx_process.h \
132 src/os/win32/ngx_socket.h \
133 src/os/win32/ngx_os.h"
134
135WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \
136 src/os/win32/ngx_errno.c \
137 src/os/win32/ngx_files.c \
138 src/os/win32/ngx_time.c \
139 src/os/win32/ngx_socket.c \
140 src/os/win32/ngx_wsarecv.c \
141 src/os/win32/ngx_wsarecv_chain.c \
142 src/os/win32/ngx_wsasend_chain.c \
143 src/os/win32/ngx_sendv.c \
144 src/os/win32/ngx_win32_init.c \
145 src/event/ngx_event_acceptex.c"
146
147
148HTTP_MODULES="ngx_http_module \
149 ngx_http_core_module \
150 ngx_http_log_module \
151 ngx_http_cache_module"
152
153HTTP_FILTER_MODULES="ngx_http_write_filter_module \
154 ngx_http_output_filter_module \
155 ngx_http_header_filter_module"
156
157HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module
158HTTP_RANGE_FILTER_MODULE=ngx_http_range_filter_module
159HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module
160HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module
161
162HTTP_STATIC_MODULE=ngx_http_static_module
163HTTP_INDEX_MODULE=ngx_http_index_module
164
165HTTP_INCS="-I src/http -I src/http/modules"
166
167HTTP_DEPS="src/http/ngx_http.h \
168 src/http/ngx_http_request.h \
169 src/http/ngx_http_filter.h \
170 src/http/ngx_http_config.h \
171 src/http/ngx_http_core_module.h \
172 src/http/ngx_http_cache.h \
173 src/http/ngx_http_busy_lock.h \
174 src/http/ngx_http_log_handler.h"
175
176HTTP_SRCS="src/http/ngx_http.c \
177 src/http/ngx_http_core_module.c \
178 src/http/ngx_http_special_response.c \
179 src/http/ngx_http_request.c \
180 src/http/ngx_http_cache.c \
Igor Sysoev4fc368f2003-12-01 16:28:14 +0000181 src/http/ngx_http_file_cache.c \
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000182 src/http/ngx_http_busy_lock.c \
183 src/http/ngx_http_parse.c \
184 src/http/ngx_http_headers.c \
185 src/http/ngx_http_header_filter.c \
186 src/http/ngx_http_write_filter.c \
187 src/http/ngx_http_output_filter.c \
188 src/http/ngx_http_log_handler.c \
189 src/http/ngx_http_request_body.c \
190 src/http/ngx_http_parse_time.c \
191 src/http/modules/ngx_http_static_handler.c \
192 src/http/modules/ngx_http_index_handler.c \
193 src/http/modules/ngx_http_chunked_filter.c \
194 src/http/modules/ngx_http_range_filter.c \
195 src/http/modules/ngx_http_charset_filter.c \
196 src/http/modules/ngx_http_not_modified_filter.c"
197
198
Igor Sysoev3b30a902003-12-25 20:26:58 +0000199HTTP_REWRITE_MODULE=ngx_http_rewrite_module
200HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c
201
202
Igor Sysoeva8fa0a62003-11-25 20:44:56 +0000203HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module
204HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c
205HTTP_GZIP_UNIX_LIBS=-lz
206HTTP_GZIP_WIN_LIBS=zlib.lib
207
208
209HTTP_PROXY_MODULE=ngx_http_proxy_module
210HTTP_PROXY_INCS="-I src/http/modules/proxy"
211HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h
212HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \
213 src/http/modules/proxy/ngx_http_proxy_upstream.c \
214 src/http/modules/proxy/ngx_http_proxy_cache.c \
215 src/http/modules/proxy/ngx_http_proxy_parse.c \
216 src/http/modules/proxy/ngx_http_proxy_header.c"