| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1 | |
| 2 | CORE_MODULES="ngx_core_module ngx_errlog_module" |
| 3 | |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 4 | CORE_INCS="src/core" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 5 | |
| 6 | CORE_DEPS="src/core/nginx.h \ |
| 7 | src/core/ngx_config.h \ |
| Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 8 | src/core/ngx_core.h \ |
| Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 9 | src/core/ngx_atomic.h \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 10 | src/core/ngx_log.h \ |
| 11 | src/core/ngx_alloc.h \ |
| 12 | src/core/ngx_array.h \ |
| 13 | src/core/ngx_table.h \ |
| 14 | src/core/ngx_hunk.h \ |
| 15 | src/core/ngx_string.h \ |
| 16 | src/core/ngx_parse.h \ |
| 17 | src/core/ngx_inet.h \ |
| 18 | src/core/ngx_file.h \ |
| Igor Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 19 | src/core/ngx_crc.h \ |
| Igor Sysoev | f5003d8 | 2003-12-04 14:53:00 +0000 | [diff] [blame] | 20 | src/core/ngx_rbtree.h \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 21 | src/core/ngx_times.h \ |
| 22 | src/core/ngx_connection.h \ |
| Igor Sysoev | 3c3ca17 | 2004-01-05 20:55:48 +0000 | [diff] [blame] | 23 | src/core/ngx_cycle.h \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 24 | src/core/ngx_conf_file.h \ |
| 25 | src/core/ngx_garbage_collector.h" |
| 26 | |
| 27 | CORE_SRCS="src/core/nginx.c \ |
| 28 | src/core/ngx_log.c \ |
| 29 | src/core/ngx_alloc.c \ |
| 30 | src/core/ngx_array.c \ |
| 31 | src/core/ngx_hunk.c \ |
| 32 | src/core/ngx_output_chain.c \ |
| 33 | src/core/ngx_string.c \ |
| 34 | src/core/ngx_parse.c \ |
| 35 | src/core/ngx_inet.c \ |
| 36 | src/core/ngx_file.c \ |
| Igor Sysoev | f5003d8 | 2003-12-04 14:53:00 +0000 | [diff] [blame] | 37 | src/core/ngx_rbtree.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 38 | src/core/ngx_times.c \ |
| Igor Sysoev | 3c3ca17 | 2004-01-05 20:55:48 +0000 | [diff] [blame] | 39 | src/core/ngx_connection.c \ |
| 40 | src/core/ngx_cycle.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 41 | src/core/ngx_conf_file.c \ |
| 42 | src/core/ngx_garbage_collector.c" |
| 43 | |
| 44 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 45 | REGEX_DEPS=src/core/ngx_regex.h |
| 46 | REGEX_SRCS=src/core/ngx_regex.c |
| Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 47 | |
| 48 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 49 | EVENT_MODULES="ngx_events_module ngx_event_core_module" |
| 50 | |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 51 | EVENT_INCS="src/event src/event/modules" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 52 | |
| 53 | EVENT_DEPS="src/event/ngx_event.h \ |
| 54 | src/event/ngx_event_timer.h \ |
| Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 55 | src/event/ngx_event_posted.h \ |
| Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 56 | src/event/ngx_event_busy_lock.h \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 57 | src/event/ngx_event_connect.h \ |
| 58 | src/event/ngx_event_pipe.h" |
| 59 | |
| 60 | EVENT_SRCS="src/event/ngx_event.c \ |
| 61 | src/event/ngx_event_timer.c \ |
| Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 62 | src/event/ngx_event_posted.c \ |
| Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 63 | src/event/ngx_event_busy_lock.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 64 | src/event/ngx_event_accept.c \ |
| 65 | src/event/ngx_event_connect.c \ |
| 66 | src/event/ngx_event_pipe.c" |
| 67 | |
| 68 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 69 | SELECT_MODULE=ngx_select_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 70 | SELECT_SRCS=src/event/modules/ngx_select_module.c |
| 71 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 72 | POLL_MODULE=ngx_poll_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 73 | POLL_SRCS=src/event/modules/ngx_poll_module.c |
| 74 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 75 | KQUEUE_MODULE=ngx_kqueue_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 76 | KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c |
| 77 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 78 | DEVPOLL_MODULE=ngx_devpoll_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 79 | DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c |
| 80 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 81 | EPOLL_MODULE=ngx_epoll_module |
| Igor Sysoev | 10318a2 | 2004-01-29 21:45:01 +0000 | [diff] [blame] | 82 | EPOLL_SRCS=src/event/modules/ngx_epoll_module.c |
| 83 | |
| Igor Sysoev | 9139cd2 | 2004-02-17 17:53:12 +0000 | [diff] [blame] | 84 | RTSIG_MODULE=ngx_rtsig_module |
| 85 | RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c |
| Igor Sysoev | bbcea6c | 2004-01-30 17:39:00 +0000 | [diff] [blame] | 86 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 87 | IOCP_MODULE=ngx_iocp_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 88 | IOCP_SRCS=src/event/modules/ngx_iocp_module.c |
| 89 | |
| Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 90 | AIO_MODULE=ngx_aio_module |
| 91 | AIO_SRCS="src/event/modules/ngx_aio_module.c \ |
| 92 | src/os/unix/ngx_aio_read.c \ |
| 93 | src/os/unix/ngx_aio_write.c \ |
| 94 | src/os/unix/ngx_aio_read_chain.c \ |
| 95 | src/os/unix/ngx_aio_write_chain.c" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 96 | |
| 97 | |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 98 | UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 99 | |
| 100 | UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 101 | src/os/unix/ngx_time.h \ |
| 102 | src/os/unix/ngx_types.h \ |
| 103 | src/os/unix/ngx_errno.h \ |
| 104 | src/os/unix/ngx_files.h \ |
| 105 | src/os/unix/ngx_process.h \ |
| Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 106 | src/os/unix/ngx_thread.h \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 107 | src/os/unix/ngx_socket.h \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 108 | src/os/unix/ngx_os.h \ |
| 109 | src/os/unix/ngx_process_cycle.h" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 110 | |
| 111 | UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 112 | src/os/unix/ngx_time.c \ |
| Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 113 | src/os/unix/ngx_errno.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 114 | src/os/unix/ngx_files.c \ |
| 115 | src/os/unix/ngx_socket.c \ |
| 116 | src/os/unix/ngx_recv.c \ |
| 117 | src/os/unix/ngx_readv_chain.c \ |
| 118 | src/os/unix/ngx_writev_chain.c \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 119 | src/os/unix/ngx_daemon.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 120 | src/os/unix/ngx_process.c \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 121 | src/os/unix/ngx_posix_init.c \ |
| 122 | src/os/unix/ngx_process_cycle.c" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 123 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 124 | FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h |
| 125 | FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c |
| 126 | FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c |
| Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 127 | FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c" |
| Igor Sysoev | 48fef66 | 2004-02-24 17:31:46 +0000 | [diff] [blame] | 128 | FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 129 | |
| Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 130 | LINUX_DEPS=src/os/unix/ngx_linux_config.h |
| 131 | LINUX_SRCS=src/os/unix/ngx_linux_init.c |
| 132 | LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c |
| 133 | |
| 134 | |
| 135 | SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h |
| 136 | SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c |
| Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 137 | SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c |
| Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 138 | |
| 139 | |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 140 | WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 141 | |
| 142 | WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 143 | src/os/win32/ngx_win32_config.h \ |
| 144 | src/os/win32/ngx_time.h \ |
| 145 | src/os/win32/ngx_types.h \ |
| 146 | src/os/win32/ngx_errno.h \ |
| 147 | src/os/win32/ngx_files.h \ |
| 148 | src/os/win32/ngx_process.h \ |
| 149 | src/os/win32/ngx_socket.h \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 150 | src/os/win32/ngx_os.h \ |
| 151 | src/os/win32/ngx_process_cycle.h" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 152 | |
| Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 153 | WIN32_CONFIG=src/os/win32/ngx_win32_config.h |
| 154 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 155 | WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 156 | src/os/win32/ngx_errno.c \ |
| 157 | src/os/win32/ngx_files.c \ |
| 158 | src/os/win32/ngx_time.c \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 159 | src/os/win32/ngx_process.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 160 | src/os/win32/ngx_socket.c \ |
| 161 | src/os/win32/ngx_wsarecv.c \ |
| 162 | src/os/win32/ngx_wsarecv_chain.c \ |
| 163 | src/os/win32/ngx_wsasend_chain.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 164 | src/os/win32/ngx_win32_init.c \ |
| Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 165 | src/os/win32/ngx_process_cycle.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 166 | src/event/ngx_event_acceptex.c" |
| 167 | |
| 168 | |
| 169 | HTTP_MODULES="ngx_http_module \ |
| 170 | ngx_http_core_module \ |
| Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 171 | ngx_http_log_module" |
| 172 | |
| 173 | HTTP_FILE_CACHE_MODULE=ngx_http_cache_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 174 | |
| 175 | HTTP_FILTER_MODULES="ngx_http_write_filter_module \ |
| 176 | ngx_http_output_filter_module \ |
| 177 | ngx_http_header_filter_module" |
| 178 | |
| 179 | HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module |
| 180 | HTTP_RANGE_FILTER_MODULE=ngx_http_range_filter_module |
| 181 | HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module |
| Igor Sysoev | 3f4685f | 2004-04-25 20:13:21 +0000 | [diff] [blame] | 182 | HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 183 | HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module |
| 184 | |
| 185 | HTTP_STATIC_MODULE=ngx_http_static_module |
| 186 | HTTP_INDEX_MODULE=ngx_http_index_module |
| 187 | |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 188 | HTTP_INCS="src/http src/http/modules" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 189 | |
| 190 | HTTP_DEPS="src/http/ngx_http.h \ |
| 191 | src/http/ngx_http_request.h \ |
| 192 | src/http/ngx_http_filter.h \ |
| 193 | src/http/ngx_http_config.h \ |
| 194 | src/http/ngx_http_core_module.h \ |
| 195 | src/http/ngx_http_cache.h \ |
| 196 | src/http/ngx_http_busy_lock.h \ |
| 197 | src/http/ngx_http_log_handler.h" |
| 198 | |
| 199 | HTTP_SRCS="src/http/ngx_http.c \ |
| 200 | src/http/ngx_http_core_module.c \ |
| 201 | src/http/ngx_http_special_response.c \ |
| 202 | src/http/ngx_http_request.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 203 | src/http/ngx_http_parse.c \ |
| 204 | src/http/ngx_http_headers.c \ |
| 205 | src/http/ngx_http_header_filter.c \ |
| 206 | src/http/ngx_http_write_filter.c \ |
| 207 | src/http/ngx_http_output_filter.c \ |
| 208 | src/http/ngx_http_log_handler.c \ |
| 209 | src/http/ngx_http_request_body.c \ |
| 210 | src/http/ngx_http_parse_time.c \ |
| 211 | src/http/modules/ngx_http_static_handler.c \ |
| 212 | src/http/modules/ngx_http_index_handler.c \ |
| 213 | src/http/modules/ngx_http_chunked_filter.c \ |
| 214 | src/http/modules/ngx_http_range_filter.c \ |
| 215 | src/http/modules/ngx_http_charset_filter.c \ |
| Igor Sysoev | 3f4685f | 2004-04-25 20:13:21 +0000 | [diff] [blame] | 216 | src/http/modules/ngx_http_headers_filter.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 217 | src/http/modules/ngx_http_not_modified_filter.c" |
| 218 | |
| Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 219 | # STUB |
| 220 | HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c" |
| 221 | |
| 222 | HTPP_CACHE_SRCS=src/http/ngx_http_cache.c |
| 223 | HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c |
| 224 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 225 | |
| Igor Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 226 | HTTP_REWRITE_MODULE=ngx_http_rewrite_module |
| 227 | HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c |
| 228 | |
| 229 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 230 | HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module |
| 231 | HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 232 | |
| 233 | |
| Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 234 | HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module |
| 235 | HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter.c |
| 236 | |
| 237 | |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 238 | HTTP_PROXY_MODULE=ngx_http_proxy_module |
| Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 239 | HTTP_PROXY_INCS="src/http/modules/proxy" |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 240 | HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h |
| 241 | HTTP_PROXY_SRCS="src/http/modules/proxy/ngx_http_proxy_handler.c \ |
| 242 | src/http/modules/proxy/ngx_http_proxy_upstream.c \ |
| Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 243 | src/http/modules/proxy/ngx_http_proxy_parse.c \ |
| 244 | src/http/modules/proxy/ngx_http_proxy_header.c" |
| Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 245 | |
| 246 | # STUB |
| 247 | # src/http/modules/proxy/ngx_http_proxy_cache.c \ |