Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 1 | |
Igor Sysoev | ff8da91 | 2004-09-29 16:00:49 +0000 | [diff] [blame] | 2 | # Copyright (C) Igor Sysoev |
| 3 | |
| 4 | |
Igor Sysoev | ab517d5 | 2004-05-18 15:29:08 +0000 | [diff] [blame] | 5 | CORE_MODULES="ngx_core_module ngx_errlog_module ngx_conf_module" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 6 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 7 | CORE_INCS="src/core" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 8 | |
| 9 | CORE_DEPS="src/core/nginx.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 10 | src/core/ngx_config.h \ |
| 11 | src/core/ngx_core.h \ |
| 12 | src/core/ngx_log.h \ |
| 13 | src/core/ngx_palloc.h \ |
| 14 | src/core/ngx_array.h \ |
| 15 | src/core/ngx_list.h \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 16 | src/core/ngx_hash.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 17 | src/core/ngx_buf.h \ |
| 18 | src/core/ngx_string.h \ |
| 19 | src/core/ngx_parse.h \ |
| 20 | src/core/ngx_inet.h \ |
| 21 | src/core/ngx_file.h \ |
| 22 | src/core/ngx_crc.h \ |
| 23 | src/core/ngx_rbtree.h \ |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 24 | src/core/ngx_radix_tree.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 25 | src/core/ngx_times.h \ |
| 26 | src/core/ngx_connection.h \ |
| 27 | src/core/ngx_cycle.h \ |
| 28 | src/core/ngx_conf_file.h \ |
| 29 | src/core/ngx_garbage_collector.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 30 | |
Igor Sysoev | 55168f6 | 2004-09-28 20:09:22 +0000 | [diff] [blame] | 31 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 32 | CORE_SRCS="src/core/nginx.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 33 | src/core/ngx_log.c \ |
| 34 | src/core/ngx_palloc.c \ |
| 35 | src/core/ngx_array.c \ |
| 36 | src/core/ngx_list.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 37 | src/core/ngx_hash.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 38 | src/core/ngx_buf.c \ |
| 39 | src/core/ngx_output_chain.c \ |
| 40 | src/core/ngx_string.c \ |
| 41 | src/core/ngx_parse.c \ |
| 42 | src/core/ngx_inet.c \ |
| 43 | src/core/ngx_file.c \ |
| 44 | src/core/ngx_rbtree.c \ |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 45 | src/core/ngx_radix_tree.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 46 | src/core/ngx_times.c \ |
| 47 | src/core/ngx_connection.c \ |
| 48 | src/core/ngx_cycle.c \ |
| 49 | src/core/ngx_spinlock.c \ |
| 50 | src/core/ngx_conf_file.c \ |
| 51 | src/core/ngx_garbage_collector.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 52 | |
| 53 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 54 | REGEX_DEPS=src/core/ngx_regex.h |
| 55 | REGEX_SRCS=src/core/ngx_regex.c |
Igor Sysoev | e89c458 | 2003-12-19 08:15:11 +0000 | [diff] [blame] | 56 | |
| 57 | |
Igor Sysoev | e573380 | 2005-09-08 14:36:09 +0000 | [diff] [blame] | 58 | OPENSSL_MODULE=ngx_openssl_module |
| 59 | OPENSSL_DEPS=src/event/ngx_event_openssl.h |
| 60 | OPENSSL_SRCS=src/event/ngx_event_openssl.c |
| 61 | |
| 62 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 63 | EVENT_MODULES="ngx_events_module ngx_event_core_module" |
| 64 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 65 | EVENT_INCS="src/event src/event/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 66 | |
| 67 | EVENT_DEPS="src/event/ngx_event.h \ |
| 68 | src/event/ngx_event_timer.h \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 69 | src/event/ngx_event_posted.h \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 70 | src/event/ngx_event_busy_lock.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 71 | src/event/ngx_event_connect.h \ |
| 72 | src/event/ngx_event_pipe.h" |
| 73 | |
| 74 | EVENT_SRCS="src/event/ngx_event.c \ |
| 75 | src/event/ngx_event_timer.c \ |
Igor Sysoev | 9a864bd | 2004-04-04 20:32:09 +0000 | [diff] [blame] | 76 | src/event/ngx_event_posted.c \ |
Igor Sysoev | ea17edc | 2004-03-02 21:14:37 +0000 | [diff] [blame] | 77 | src/event/ngx_event_busy_lock.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 78 | src/event/ngx_event_accept.c \ |
| 79 | src/event/ngx_event_connect.c \ |
| 80 | src/event/ngx_event_pipe.c" |
| 81 | |
| 82 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 83 | SELECT_MODULE=ngx_select_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 84 | SELECT_SRCS=src/event/modules/ngx_select_module.c |
| 85 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 86 | POLL_MODULE=ngx_poll_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 87 | POLL_SRCS=src/event/modules/ngx_poll_module.c |
| 88 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 89 | KQUEUE_MODULE=ngx_kqueue_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 90 | KQUEUE_SRCS=src/event/modules/ngx_kqueue_module.c |
| 91 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 92 | DEVPOLL_MODULE=ngx_devpoll_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 93 | DEVPOLL_SRCS=src/event/modules/ngx_devpoll_module.c |
| 94 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 95 | EPOLL_MODULE=ngx_epoll_module |
Igor Sysoev | 10318a2 | 2004-01-29 21:45:01 +0000 | [diff] [blame] | 96 | EPOLL_SRCS=src/event/modules/ngx_epoll_module.c |
| 97 | |
Igor Sysoev | 9139cd2 | 2004-02-17 17:53:12 +0000 | [diff] [blame] | 98 | RTSIG_MODULE=ngx_rtsig_module |
| 99 | RTSIG_SRCS=src/event/modules/ngx_rtsig_module.c |
Igor Sysoev | bbcea6c | 2004-01-30 17:39:00 +0000 | [diff] [blame] | 100 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 101 | IOCP_MODULE=ngx_iocp_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 102 | IOCP_SRCS=src/event/modules/ngx_iocp_module.c |
| 103 | |
Igor Sysoev | a4b16df | 2004-02-02 21:19:52 +0000 | [diff] [blame] | 104 | AIO_MODULE=ngx_aio_module |
| 105 | AIO_SRCS="src/event/modules/ngx_aio_module.c \ |
| 106 | src/os/unix/ngx_aio_read.c \ |
| 107 | src/os/unix/ngx_aio_write.c \ |
| 108 | src/os/unix/ngx_aio_read_chain.c \ |
| 109 | src/os/unix/ngx_aio_write_chain.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 110 | |
| 111 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 112 | UNIX_INCS="$CORE_INCS $EVENT_INCS src/os/unix" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 113 | |
| 114 | UNIX_DEPS="$CORE_DEPS $EVENT_DEPS \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 115 | src/core/ngx_unix_domain.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 116 | src/os/unix/ngx_time.h \ |
| 117 | src/os/unix/ngx_types.h \ |
| 118 | src/os/unix/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 119 | src/os/unix/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 120 | src/os/unix/ngx_files.h \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 121 | src/os/unix/ngx_channel.h \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 122 | src/os/unix/ngx_shared.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 123 | src/os/unix/ngx_process.h \ |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 124 | src/os/unix/ngx_setproctitle.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 125 | src/os/unix/ngx_atomic.h \ |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 126 | src/os/unix/ngx_gcc_atomic_x86.h \ |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 127 | src/os/unix/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 128 | src/os/unix/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 129 | src/os/unix/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 130 | src/os/unix/ngx_user.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 131 | src/os/unix/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 132 | |
Igor Sysoev | 7845223 | 2005-10-12 13:50:36 +0000 | [diff] [blame] | 133 | # add to UNIX_DEPS |
| 134 | # src/os/unix/ngx_gcc_atomic_amd64.h \ |
| 135 | # src/os/unix/ngx_gcc_atomic_sparc64.h \ |
| 136 | # src/os/unix/ngx_gcc_atomic_ppc.h \ |
| 137 | # src/os/unix/ngx_sunpro_atomic_sparc64.h \ |
| 138 | # src/os/unix/ngx_sunpro_x86.il \ |
| 139 | # src/os/unix/ngx_sunpro_amd64.il \ |
| 140 | # src/os/unix/ngx_sunpro_sparc64.il \ |
| 141 | |
| 142 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 143 | UNIX_SRCS="$CORE_SRCS $EVENT_SRCS \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 144 | src/core/ngx_unix_domain.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 145 | src/os/unix/ngx_time.c \ |
Igor Sysoev | dc867cd | 2003-12-14 20:10:27 +0000 | [diff] [blame] | 146 | src/os/unix/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 147 | src/os/unix/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 148 | src/os/unix/ngx_files.c \ |
| 149 | src/os/unix/ngx_socket.c \ |
| 150 | src/os/unix/ngx_recv.c \ |
| 151 | src/os/unix/ngx_readv_chain.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 152 | src/os/unix/ngx_send.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 153 | src/os/unix/ngx_writev_chain.c \ |
Igor Sysoev | e0207bb | 2004-06-23 15:18:17 +0000 | [diff] [blame] | 154 | src/os/unix/ngx_channel.c \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 155 | src/os/unix/ngx_shared.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 156 | src/os/unix/ngx_process.c \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 157 | src/os/unix/ngx_daemon.c \ |
Igor Sysoev | 924bd79 | 2004-10-11 15:07:03 +0000 | [diff] [blame] | 158 | src/os/unix/ngx_setproctitle.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 159 | src/os/unix/ngx_posix_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 160 | src/os/unix/ngx_user.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 161 | src/os/unix/ngx_process_cycle.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 162 | |
Igor Sysoev | d09f7a1 | 2004-06-15 17:47:16 +0000 | [diff] [blame] | 163 | POSIX_DEPS=src/os/unix/ngx_posix_config.h |
| 164 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 165 | FREEBSD_DEPS=src/os/unix/ngx_freebsd_config.h |
| 166 | FREEBSD_SRCS=src/os/unix/ngx_freebsd_init.c |
| 167 | FREEBSD_SENDFILE_SRCS=src/os/unix/ngx_freebsd_sendfile_chain.c |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 168 | FREEBSD_RFORK_DEPS="src/os/unix/ngx_freebsd_rfork_thread.h" |
Igor Sysoev | b54698b | 2004-02-23 20:57:12 +0000 | [diff] [blame] | 169 | FREEBSD_RFORK_SRCS="src/os/unix/ngx_freebsd_rfork_thread.c" |
Igor Sysoev | 48fef66 | 2004-02-24 17:31:46 +0000 | [diff] [blame] | 170 | FREEBSD_RFORK_THREAD_SRCS="src/os/unix/rfork_thread.S" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 171 | |
Igor Sysoev | 32fcd5c | 2004-07-05 06:55:54 +0000 | [diff] [blame] | 172 | PTHREAD_SRCS="src/os/unix/ngx_pthread_thread.c" |
| 173 | |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 174 | LINUX_DEPS=src/os/unix/ngx_linux_config.h |
| 175 | LINUX_SRCS=src/os/unix/ngx_linux_init.c |
| 176 | LINUX_SENDFILE_SRCS=src/os/unix/ngx_linux_sendfile_chain.c |
| 177 | |
| 178 | |
| 179 | SOLARIS_DEPS=src/os/unix/ngx_solaris_config.h |
| 180 | SOLARIS_SRCS=src/os/unix/ngx_solaris_init.c |
Igor Sysoev | 0e499db | 2003-11-27 07:45:22 +0000 | [diff] [blame] | 181 | SOLARIS_SENDFILEV_SRCS=src/os/unix/ngx_solaris_sendfilev_chain.c |
Igor Sysoev | c0f8d91 | 2003-11-26 15:42:18 +0000 | [diff] [blame] | 182 | |
| 183 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 184 | WIN32_INCS="$CORE_INCS $EVENT_INCS src/os/win32" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 185 | |
| 186 | WIN32_DEPS="$CORE_DEPS $EVENT_DEPS \ |
| 187 | src/os/win32/ngx_win32_config.h \ |
| 188 | src/os/win32/ngx_time.h \ |
| 189 | src/os/win32/ngx_types.h \ |
| 190 | src/os/win32/ngx_errno.h \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 191 | src/os/win32/ngx_alloc.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 192 | src/os/win32/ngx_files.h \ |
Igor Sysoev | 415b1ce | 2004-06-17 17:18:53 +0000 | [diff] [blame] | 193 | src/os/win32/ngx_shared.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 194 | src/os/win32/ngx_process.h \ |
Igor Sysoev | 078d1b2 | 2004-06-30 15:30:41 +0000 | [diff] [blame] | 195 | src/os/win32/ngx_atomic.h \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 196 | src/os/win32/ngx_thread.h \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 197 | src/os/win32/ngx_socket.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 198 | src/os/win32/ngx_os.h \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 199 | src/os/win32/ngx_user.h \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 200 | src/os/win32/ngx_gui.h \ |
Igor Sysoev | e5a222c | 2005-01-25 12:27:35 +0000 | [diff] [blame] | 201 | src/os/win32/ngx_gui_resources.h \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 202 | src/os/win32/ngx_process_cycle.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 203 | |
Igor Sysoev | fc5a10a | 2004-03-09 19:47:07 +0000 | [diff] [blame] | 204 | WIN32_CONFIG=src/os/win32/ngx_win32_config.h |
| 205 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 206 | WIN32_SRCS="$CORE_SRCS $EVENT_SRCS \ |
| 207 | src/os/win32/ngx_errno.c \ |
Igor Sysoev | 0ab91b9 | 2004-06-06 19:49:18 +0000 | [diff] [blame] | 208 | src/os/win32/ngx_alloc.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 209 | src/os/win32/ngx_files.c \ |
| 210 | src/os/win32/ngx_time.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 211 | src/os/win32/ngx_process.c \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 212 | src/os/win32/ngx_thread.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 213 | src/os/win32/ngx_socket.c \ |
| 214 | src/os/win32/ngx_wsarecv.c \ |
| 215 | src/os/win32/ngx_wsarecv_chain.c \ |
| 216 | src/os/win32/ngx_wsasend_chain.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 217 | src/os/win32/ngx_win32_init.c \ |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 218 | src/os/win32/ngx_user.c \ |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 219 | src/os/win32/ngx_gui.c \ |
Igor Sysoev | a536298 | 2004-03-04 07:04:55 +0000 | [diff] [blame] | 220 | src/os/win32/ngx_process_cycle.c \ |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 221 | src/event/ngx_event_acceptex.c" |
| 222 | |
Igor Sysoev | e5a222c | 2005-01-25 12:27:35 +0000 | [diff] [blame] | 223 | NGX_WIN32_ICONS="src/os/win32/nginx.ico src/os/win32/nginx_tray.ico" |
Igor Sysoev | 1b73583 | 2004-11-11 14:07:14 +0000 | [diff] [blame] | 224 | NGX_WIN32_RC="src/os/win32/nginx.rc" |
| 225 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 226 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 227 | # the http modules that have their logging formats |
| 228 | # must be after ngx_http_log_module |
| 229 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 230 | HTTP_MODULES="ngx_http_module \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 231 | ngx_http_core_module \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 232 | ngx_http_log_module \ |
| 233 | ngx_http_upstream_module" |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 234 | |
Igor Sysoev | b1dfe47 | 2004-12-21 12:30:30 +0000 | [diff] [blame] | 235 | HTTP_CACHE_MODULE=ngx_http_cache_module |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 236 | |
Igor Sysoev | 7823cc3 | 2004-07-14 16:01:42 +0000 | [diff] [blame] | 237 | HTTP_WRITE_FILTER_MODULE="ngx_http_write_filter_module" |
| 238 | HTTP_HEADER_FILTER_MODULE="ngx_http_header_filter_module" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 239 | |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 240 | HTTP_POSTPONE_FILTER_MODULE=ngx_http_postpone_filter_module |
| 241 | HTTP_COPY_FILTER_MODULE=ngx_http_copy_filter_module |
| 242 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 243 | HTTP_CHUNKED_FILTER_MODULE=ngx_http_chunked_filter_module |
Igor Sysoev | 3f4685f | 2004-04-25 20:13:21 +0000 | [diff] [blame] | 244 | HTTP_HEADERS_FILTER_MODULE=ngx_http_headers_filter_module |
Igor Sysoev | 31f7f6a | 2004-05-12 05:37:55 +0000 | [diff] [blame] | 245 | |
| 246 | HTTP_RANGE_HEADER_FILTER_MODULE=ngx_http_range_header_filter_module |
| 247 | HTTP_RANGE_BODY_FILTER_MODULE=ngx_http_range_body_filter_module |
| 248 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 249 | HTTP_NOT_MODIFIED_FILTER_MODULE=ngx_http_not_modified_filter_module |
| 250 | |
| 251 | HTTP_STATIC_MODULE=ngx_http_static_module |
| 252 | HTTP_INDEX_MODULE=ngx_http_index_module |
| 253 | |
Igor Sysoev | 11dbe97 | 2004-03-29 17:43:58 +0000 | [diff] [blame] | 254 | HTTP_INCS="src/http src/http/modules" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 255 | |
| 256 | HTTP_DEPS="src/http/ngx_http.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 257 | src/http/ngx_http_request.h \ |
| 258 | src/http/ngx_http_config.h \ |
| 259 | src/http/ngx_http_core_module.h \ |
| 260 | src/http/ngx_http_cache.h \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 261 | src/http/ngx_http_variables.h \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 262 | src/http/ngx_http_script.h \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 263 | src/http/ngx_http_upstream.h \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 264 | src/http/ngx_http_busy_lock.h \ |
Igor Sysoev | 9ac946b | 2005-10-24 15:09:41 +0000 | [diff] [blame] | 265 | src/http/modules/ngx_http_log_module.h" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 266 | |
| 267 | HTTP_SRCS="src/http/ngx_http.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 268 | src/http/ngx_http_core_module.c \ |
| 269 | src/http/ngx_http_special_response.c \ |
| 270 | src/http/ngx_http_request.c \ |
| 271 | src/http/ngx_http_parse.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 272 | src/http/ngx_http_header_filter_module.c \ |
| 273 | src/http/ngx_http_write_filter_module.c \ |
| 274 | src/http/ngx_http_copy_filter_module.c \ |
Igor Sysoev | 9ac946b | 2005-10-24 15:09:41 +0000 | [diff] [blame] | 275 | src/http/modules/ngx_http_log_module.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 276 | src/http/ngx_http_request_body.c \ |
Igor Sysoev | 8184d1b | 2005-03-04 14:06:57 +0000 | [diff] [blame] | 277 | src/http/ngx_http_variables.c \ |
Igor Sysoev | 02f742b | 2005-04-08 15:18:55 +0000 | [diff] [blame] | 278 | src/http/ngx_http_script.c \ |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 279 | src/http/ngx_http_upstream.c \ |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 280 | src/http/ngx_http_parse_time.c \ |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 281 | src/http/modules/ngx_http_static_module.c \ |
| 282 | src/http/modules/ngx_http_index_module.c \ |
| 283 | src/http/modules/ngx_http_chunked_filter_module.c \ |
| 284 | src/http/modules/ngx_http_range_filter_module.c \ |
| 285 | src/http/modules/ngx_http_headers_filter_module.c \ |
| 286 | src/http/modules/ngx_http_not_modified_filter_module.c" |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 287 | |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 288 | # STUB |
| 289 | HTTP_SRCS="$HTTP_SRCS src/http/ngx_http_busy_lock.c" |
| 290 | |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 291 | HTPP_POSTPONE_FILTER_SRCS=src/http/ngx_http_postpone_filter_module.c |
| 292 | |
Igor Sysoev | 67f88e9 | 2004-03-12 16:57:08 +0000 | [diff] [blame] | 293 | HTPP_CACHE_SRCS=src/http/ngx_http_cache.c |
| 294 | HTPP_FILE_CACHE_SRCS=src/http/ngx_http_file_cache.c |
| 295 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 296 | |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 297 | HTTP_CHARSET_FILTER_MODULE=ngx_http_charset_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 298 | HTTP_CHARSET_SRCS=src/http/modules/ngx_http_charset_filter_module.c |
Igor Sysoev | 3d5c0fc | 2004-06-22 16:43:09 +0000 | [diff] [blame] | 299 | |
| 300 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 301 | HTTP_GZIP_FILTER_MODULE=ngx_http_gzip_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 302 | HTTP_GZIP_SRCS=src/http/modules/ngx_http_gzip_filter_module.c |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 303 | |
| 304 | |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 305 | HTTP_SSI_FILTER_MODULE=ngx_http_ssi_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 306 | HTTP_SSI_SRCS=src/http/modules/ngx_http_ssi_filter_module.c |
Igor Sysoev | e04084c | 2004-01-26 08:52:49 +0000 | [diff] [blame] | 307 | |
| 308 | |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 309 | HTTP_USERID_FILTER_MODULE=ngx_http_userid_filter_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 310 | HTTP_USERID_SRCS=src/http/modules/ngx_http_userid_filter_module.c |
Igor Sysoev | a7c4a2a | 2004-08-29 03:55:41 +0000 | [diff] [blame] | 311 | |
| 312 | |
Igor Sysoev | 09c684b | 2005-11-09 17:25:55 +0000 | [diff] [blame] | 313 | HTTP_REALIP_MODULE=ngx_http_realip_module |
| 314 | HTTP_REALIP_SRCS=src/http/modules/ngx_http_realip_module.c |
| 315 | |
| 316 | |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 317 | HTTP_ACCESS_MODULE=ngx_http_access_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 318 | HTTP_ACCESS_SRCS=src/http/modules/ngx_http_access_module.c |
Igor Sysoev | 59f3aa3 | 2004-06-24 16:07:04 +0000 | [diff] [blame] | 319 | |
| 320 | |
Igor Sysoev | 4d656dc | 2005-03-22 16:02:46 +0000 | [diff] [blame] | 321 | HTTP_AUTH_BASIC_MODULE=ngx_http_auth_basic_module |
| 322 | HTTP_AUTH_BASIC_SRCS=src/http/modules/ngx_http_auth_basic_module.c |
| 323 | |
| 324 | |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 325 | HTTP_AUTOINDEX_MODULE=ngx_http_autoindex_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 326 | HTTP_AUTOINDEX_SRCS=src/http/modules/ngx_http_autoindex_module.c |
Igor Sysoev | 723e6cc | 2004-10-25 15:29:23 +0000 | [diff] [blame] | 327 | |
| 328 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 329 | HTTP_STATUS_MODULE=ngx_http_status_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 330 | HTTP_STATUS_SRCS=src/http/modules/ngx_http_status_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 331 | |
| 332 | |
Igor Sysoev | 805d9db | 2005-02-03 19:33:37 +0000 | [diff] [blame] | 333 | HTTP_GEO_MODULE=ngx_http_geo_module |
| 334 | HTTP_GEO_SRCS=src/http/modules/ngx_http_geo_module.c |
| 335 | |
| 336 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 337 | HTTP_REFERER_MODULE=ngx_http_referer_module |
| 338 | HTTP_REFERER_SRCS=src/http/modules/ngx_http_referer_module.c |
| 339 | |
| 340 | |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 341 | HTTP_REWRITE_MODULE=ngx_http_rewrite_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 342 | HTTP_REWRITE_SRCS=src/http/modules/ngx_http_rewrite_module.c |
Igor Sysoev | c83f683 | 2004-06-24 07:53:37 +0000 | [diff] [blame] | 343 | |
| 344 | |
Igor Sysoev | f38e046 | 2004-07-16 17:11:43 +0000 | [diff] [blame] | 345 | HTTP_SSL_MODULE=ngx_http_ssl_module |
| 346 | HTTP_SSL_DEPS=src/http/modules/ngx_http_ssl_module.h |
| 347 | HTTP_SSL_SRCS=src/http/modules/ngx_http_ssl_module.c |
| 348 | |
| 349 | |
Igor Sysoev | a8fa0a6 | 2003-11-25 20:44:56 +0000 | [diff] [blame] | 350 | HTTP_PROXY_MODULE=ngx_http_proxy_module |
Igor Sysoev | 899b44e | 2005-05-12 14:58:06 +0000 | [diff] [blame] | 351 | HTTP_PROXY_SRCS=src/http/modules/ngx_http_proxy_module.c |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 352 | |
| 353 | |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 354 | HTTP_FASTCGI_MODULE=ngx_http_fastcgi_module |
Igor Sysoev | c157172 | 2005-03-19 12:38:37 +0000 | [diff] [blame] | 355 | HTTP_FASTCGI_SRCS=src/http/modules/ngx_http_fastcgi_module.c |
Igor Sysoev | 02025fd | 2005-01-18 13:03:58 +0000 | [diff] [blame] | 356 | |
| 357 | |
Igor Sysoev | c31a9bb | 2005-11-26 10:11:11 +0000 | [diff] [blame] | 358 | HTTP_MEMCACHED_MODULE=ngx_http_memcached_module |
| 359 | HTTP_MEMCACHED_SRCS=src/http/modules/ngx_http_memcached_module.c |
| 360 | |
| 361 | |
Igor Sysoev | 0e5dc5c | 2005-11-15 13:30:52 +0000 | [diff] [blame] | 362 | HTTP_EMPTY_GIF_MODULE=ngx_http_empty_gif_module |
| 363 | HTTP_EMPTY_GIF_SRCS=src/http/modules/ngx_http_empty_gif_module.c |
| 364 | |
| 365 | |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 366 | IMAP_INCS="src/imap" |
| 367 | |
| 368 | IMAP_DEPS="src/imap/ngx_imap.h" |
| 369 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 370 | IMAP_MODULES="ngx_imap_module ngx_imap_core_module" |
| 371 | |
Igor Sysoev | 59cf56c | 2004-09-07 15:29:22 +0000 | [diff] [blame] | 372 | IMAP_SRCS="src/imap/ngx_imap.c \ |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 373 | src/imap/ngx_imap_core_module.c \ |
Igor Sysoev | c0edbcc | 2004-10-21 15:34:38 +0000 | [diff] [blame] | 374 | src/imap/ngx_imap_handler.c \ |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 375 | src/imap/ngx_imap_parse.c" |
| 376 | |
Igor Sysoev | ceb9929 | 2005-09-06 16:09:32 +0000 | [diff] [blame] | 377 | IMAP_SSL_MODULE="ngx_imap_ssl_module" |
| 378 | IMAP_SSL_DEPS="src/imap/ngx_imap_ssl_module.h" |
| 379 | IMAP_SSL_SRCS="src/imap/ngx_imap_ssl_module.c" |
| 380 | |
Igor Sysoev | 7b190b4 | 2005-06-07 15:56:31 +0000 | [diff] [blame] | 381 | IMAP_AUTH_HTTP_MODULE="ngx_imap_auth_http_module" |
| 382 | IMAP_AUTH_HTTP_SRCS="src/imap/ngx_imap_auth_http_module.c" |
| 383 | |
| 384 | IMAP_PROXY_MODULE="ngx_imap_proxy_module" |
| 385 | IMAP_PROXY_SRCS="src/imap/ngx_imap_proxy_module.c" |