Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1 | |
| 2 | CORE_MODULES="ngx_core_module ngx_errlog_module" |
| 3 | |
| 4 | CORE_INCS="-I src/core" |
| 5 | |
| 6 | CORE_DEPS="src/core/nginx.h \ |
| 7 | src/core/ngx_config.h \ |
Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 8 | src/core/ngx_atomic.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 9 | 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 Sysoev | 865c150 | 2003-11-30 20:03:18 +0000 | [diff] [blame] | 18 | src/core/ngx_crc.h \ |
Igor Sysoev | f5003d8 | 2003-12-04 14:53:00 +0000 | [diff] [blame] | 19 | src/core/ngx_rbtree.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 20 | src/core/ngx_times.h \ |
| 21 | src/core/ngx_connection.h \ |
Igor Sysoev | 3c3ca17 | 2004-01-05 20:55:48 +0000 | [diff] [blame] | 22 | src/core/ngx_cycle.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 23 | src/core/ngx_conf_file.h \ |
| 24 | src/core/ngx_garbage_collector.h" |
| 25 | |
| 26 | CORE_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 Sysoev | f5003d8 | 2003-12-04 14:53:00 +0000 | [diff] [blame] | 36 | src/core/ngx_rbtree.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 37 | src/core/ngx_times.c \ |
Igor Sysoev | 3c3ca17 | 2004-01-05 20:55:48 +0000 | [diff] [blame] | 38 | src/core/ngx_connection.c \ |
| 39 | src/core/ngx_cycle.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 40 | src/core/ngx_conf_file.c \ |
| 41 | src/core/ngx_garbage_collector.c" |
| 42 | |
| 43 | |
Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 44 | REGEX_DEPS="src/core/ngx_regex.h" |
| 45 | REGEX_SRCS="src/core/ngx_regex.c" |
| 46 | |
| 47 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 48 | EVENT_MODULES="ngx_events_module ngx_event_core_module" |
| 49 | |
| 50 | EVENT_INCS="-I src/event -I src/event/modules" |
| 51 | |
| 52 | EVENT_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 | |
| 57 | EVENT_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 | |
| 65 | SELECT_MODULE="ngx_select_module" |
| 66 | SELECT_SRCS=src/event/modules/ngx_select_module.c |
| 67 | |
| 68 | POLL_MODULE="ngx_poll_module" |
| 69 | POLL_SRCS=src/event/modules/ngx_poll_module.c |
| 70 | |
| 71 | KQUEUE_MODULE="ngx_kqueue_module" |
| 72 | KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c |
| 73 | |
| 74 | DEVPOLL_MODULE="ngx_devpoll_module" |
| 75 | DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c |
| 76 | |
| 77 | IOCP_MODULE="ngx_iocp_module" |
| 78 | IOCP_SRCS=src/event/modules/ngx_iocp_module.c |
| 79 | |
| 80 | AIO_MODULE="ngx_aio_module" |
| 81 | AIO_SRCS=src/event/modules/ngx_aio_module.c |
| 82 | |
| 83 | |
| 84 | UNIX_INCS="$CORE_INCS $EVENT_INCS -I src/os/unix" |
| 85 | |
| 86 | UNIX_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 | |
| 95 | UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 96 | src/os/unix/ngx_time.c \ |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 97 | src/os/unix/ngx_errno.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 98 | 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 Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 108 | FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h |
| 109 | FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c |
| 110 | FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c |
| 111 | |
| 112 | |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 113 | LINUX_DEPS=src/os/unix/ngx_linux_config.h |
| 114 | LINUX_SRCS=src/os/unix/ngx_linux_init.c |
| 115 | LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c |
| 116 | |
| 117 | |
| 118 | SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h |
| 119 | SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 120 | SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 121 | |
| 122 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 123 | WIN32_INCS="$CORE_INCS $EVENT_INCS -I src/os/win32" |
| 124 | |
| 125 | WIN32_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 | |
| 135 | WIN32_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 | |
| 148 | HTTP_MODULES="ngx_http_module \ |
| 149 | ngx_http_core_module \ |
| 150 | ngx_http_log_module \ |
| 151 | ngx_http_cache_module" |
| 152 | |
| 153 | HTTP_FILTER_MODULES="ngx_http_write_filter_module \ |
| 154 | ngx_http_output_filter_module \ |
| 155 | ngx_http_header_filter_module" |
| 156 | |
| 157 | HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module |
| 158 | HTTP_RANGE_FILTER_MODULE=ngx_http_range_filter_module |
| 159 | HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module |
| 160 | HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module |
| 161 | |
| 162 | HTTP_STATIC_MODULE=ngx_http_static_module |
| 163 | HTTP_INDEX_MODULE=ngx_http_index_module |
| 164 | |
| 165 | HTTP_INCS="-I src/http -I src/http/modules" |
| 166 | |
| 167 | HTTP_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 | |
| 176 | HTTP_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 Sysoev | 4fc368f | 2003-12-01 16:28:14 +0000 | [diff] [blame] | 181 | src/http/ngx_http_file_cache.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 182 | 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 Sysoev | 3b30a90 | 2003-12-25 20:26:58 +0000 | [diff] [blame] | 199 | HTTP_REWRITE_MODULE=ngx_http_rewrite_module |
| 200 | HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_handler.c |
| 201 | |
| 202 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 203 | HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module |
| 204 | HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter.c |
| 205 | HTTP_GZIP_UNIX_LIBS=-lz |
| 206 | HTTP_GZIP_WIN_LIBS=zlib.lib |
| 207 | |
| 208 | |
| 209 | HTTP_PROXY_MODULE=ngx_http_proxy_module |
| 210 | HTTP_PROXY_INCS="-I src/http/modules/proxy" |
| 211 | HTTP_PROXY_DEPS=src/http/modules/proxy/ngx_http_proxy_handler.h |
| 212 | HTTP_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" |