Ticket #2422: Makefile

File Makefile, 67.7 KB (added by justdan23@…, 3 years ago)

objs/Makefile

Line 
1
2CC = cl
3CFLAGS = -O2 -W4 -WX -nologo -MT -Zi -Fdobjs/nginx.pdb -DFD_SETSIZE=1024 -DNO_SYS_TYPES_H
4CPP =
5LINK = $(CC)
6
7
8ALL_INCS = -I src/core \
9 -I src/event \
10 -I src/event/modules \
11 -I src/os/win32 \
12 -I objs/lib/pcre2-10.40/src/ \
13 -I objs/lib/openssl/openssl/include \
14 -I objs/lib/zlib-1.2.13 \
15 -I objs \
16 -I src/http \
17 -I src/http/modules \
18 -I src/http/v2 \
19 -I src/mail \
20 -I src/stream
21
22
23CORE_DEPS = src/core/nginx.h \
24 src/core/ngx_config.h \
25 src/core/ngx_core.h \
26 src/core/ngx_log.h \
27 src/core/ngx_palloc.h \
28 src/core/ngx_array.h \
29 src/core/ngx_list.h \
30 src/core/ngx_hash.h \
31 src/core/ngx_buf.h \
32 src/core/ngx_queue.h \
33 src/core/ngx_string.h \
34 src/core/ngx_parse.h \
35 src/core/ngx_parse_time.h \
36 src/core/ngx_inet.h \
37 src/core/ngx_file.h \
38 src/core/ngx_crc.h \
39 src/core/ngx_crc32.h \
40 src/core/ngx_murmurhash.h \
41 src/core/ngx_md5.h \
42 src/core/ngx_sha1.h \
43 src/core/ngx_rbtree.h \
44 src/core/ngx_radix_tree.h \
45 src/core/ngx_rwlock.h \
46 src/core/ngx_slab.h \
47 src/core/ngx_times.h \
48 src/core/ngx_shmtx.h \
49 src/core/ngx_connection.h \
50 src/core/ngx_cycle.h \
51 src/core/ngx_conf_file.h \
52 src/core/ngx_module.h \
53 src/core/ngx_resolver.h \
54 src/core/ngx_open_file_cache.h \
55 src/core/ngx_crypt.h \
56 src/core/ngx_proxy_protocol.h \
57 src/core/ngx_syslog.h \
58 src/event/ngx_event.h \
59 src/event/ngx_event_timer.h \
60 src/event/ngx_event_posted.h \
61 src/event/ngx_event_connect.h \
62 src/event/ngx_event_pipe.h \
63 src/event/ngx_event_udp.h \
64 src/os/win32/ngx_win32_config.h \
65 src/os/win32/ngx_time.h \
66 src/os/win32/ngx_errno.h \
67 src/os/win32/ngx_alloc.h \
68 src/os/win32/ngx_files.h \
69 src/os/win32/ngx_shmem.h \
70 src/os/win32/ngx_process.h \
71 src/os/win32/ngx_atomic.h \
72 src/os/win32/ngx_thread.h \
73 src/os/win32/ngx_socket.h \
74 src/os/win32/ngx_os.h \
75 src/os/win32/ngx_user.h \
76 src/os/win32/ngx_dlopen.h \
77 src/os/win32/ngx_process_cycle.h \
78 src/event/ngx_event_openssl.h \
79 src/core/ngx_regex.h \
80 objs/lib/pcre2-10.40/src/pcre2.h \
81 objs/lib/openssl/openssl/include/openssl/ssl.h \
82 objs/ngx_auto_config.h \
83 objs/ngx_config.pch
84
85
86CORE_INCS = -I src/core \
87 -I src/event \
88 -I src/event/modules \
89 -I src/os/win32 \
90 -I objs/lib/pcre2-10.40/src/ \
91 -I objs/lib/openssl/openssl/include \
92 -I objs/lib/zlib-1.2.13 \
93 -I objs
94
95
96HTTP_DEPS = src/http/ngx_http.h \
97 src/http/ngx_http_request.h \
98 src/http/ngx_http_config.h \
99 src/http/ngx_http_core_module.h \
100 src/http/ngx_http_cache.h \
101 src/http/ngx_http_variables.h \
102 src/http/ngx_http_script.h \
103 src/http/ngx_http_upstream.h \
104 src/http/ngx_http_upstream_round_robin.h \
105 src/http/modules/ngx_http_ssi_filter_module.h \
106 src/http/v2/ngx_http_v2.h \
107 src/http/v2/ngx_http_v2_module.h \
108 src/http/modules/ngx_http_ssl_module.h
109
110
111HTTP_INCS = -I src/http \
112 -I src/http/modules \
113 -I src/http/v2
114
115
116MAIL_DEPS = src/mail/ngx_mail.h \
117 src/mail/ngx_mail_ssl_module.h \
118 src/mail/ngx_mail_pop3_module.h \
119 src/mail/ngx_mail_imap_module.h \
120 src/mail/ngx_mail_smtp_module.h
121
122
123MAIL_INCS = -I src/mail
124
125
126STREAM_DEPS = src/stream/ngx_stream.h \
127 src/stream/ngx_stream_variables.h \
128 src/stream/ngx_stream_script.h \
129 src/stream/ngx_stream_upstream.h \
130 src/stream/ngx_stream_upstream_round_robin.h \
131 src/stream/ngx_stream_ssl_module.h
132
133
134STREAM_INCS = -I src/stream
135
136
137build: binary modules manpage
138
139binary: objs/nginx.exe
140
141objs/nginx.exe: objs/src/core/nginx.obj \
142 objs/src/core/ngx_log.obj \
143 objs/src/core/ngx_palloc.obj \
144 objs/src/core/ngx_array.obj \
145 objs/src/core/ngx_list.obj \
146 objs/src/core/ngx_hash.obj \
147 objs/src/core/ngx_buf.obj \
148 objs/src/core/ngx_queue.obj \
149 objs/src/core/ngx_output_chain.obj \
150 objs/src/core/ngx_string.obj \
151 objs/src/core/ngx_parse.obj \
152 objs/src/core/ngx_parse_time.obj \
153 objs/src/core/ngx_inet.obj \
154 objs/src/core/ngx_file.obj \
155 objs/src/core/ngx_crc32.obj \
156 objs/src/core/ngx_murmurhash.obj \
157 objs/src/core/ngx_md5.obj \
158 objs/src/core/ngx_sha1.obj \
159 objs/src/core/ngx_rbtree.obj \
160 objs/src/core/ngx_radix_tree.obj \
161 objs/src/core/ngx_slab.obj \
162 objs/src/core/ngx_times.obj \
163 objs/src/core/ngx_shmtx.obj \
164 objs/src/core/ngx_connection.obj \
165 objs/src/core/ngx_cycle.obj \
166 objs/src/core/ngx_spinlock.obj \
167 objs/src/core/ngx_rwlock.obj \
168 objs/src/core/ngx_cpuinfo.obj \
169 objs/src/core/ngx_conf_file.obj \
170 objs/src/core/ngx_module.obj \
171 objs/src/core/ngx_resolver.obj \
172 objs/src/core/ngx_open_file_cache.obj \
173 objs/src/core/ngx_crypt.obj \
174 objs/src/core/ngx_proxy_protocol.obj \
175 objs/src/core/ngx_syslog.obj \
176 objs/src/event/ngx_event.obj \
177 objs/src/event/ngx_event_timer.obj \
178 objs/src/event/ngx_event_posted.obj \
179 objs/src/event/ngx_event_accept.obj \
180 objs/src/event/ngx_event_udp.obj \
181 objs/src/event/ngx_event_connect.obj \
182 objs/src/event/ngx_event_pipe.obj \
183 objs/src/os/win32/ngx_errno.obj \
184 objs/src/os/win32/ngx_alloc.obj \
185 objs/src/os/win32/ngx_files.obj \
186 objs/src/os/win32/ngx_shmem.obj \
187 objs/src/os/win32/ngx_time.obj \
188 objs/src/os/win32/ngx_process.obj \
189 objs/src/os/win32/ngx_thread.obj \
190 objs/src/os/win32/ngx_socket.obj \
191 objs/src/os/win32/ngx_wsarecv.obj \
192 objs/src/os/win32/ngx_wsarecv_chain.obj \
193 objs/src/os/win32/ngx_udp_wsarecv.obj \
194 objs/src/os/win32/ngx_wsasend.obj \
195 objs/src/os/win32/ngx_wsasend_chain.obj \
196 objs/src/os/win32/ngx_win32_init.obj \
197 objs/src/os/win32/ngx_user.obj \
198 objs/src/os/win32/ngx_dlopen.obj \
199 objs/src/os/win32/ngx_event_log.obj \
200 objs/src/os/win32/ngx_process_cycle.obj \
201 objs/src/event/ngx_event_acceptex.obj \
202 objs/src/event/modules/ngx_iocp_module.obj \
203 objs/src/event/modules/ngx_win32_select_module.obj \
204 objs/src/event/modules/ngx_win32_poll_module.obj \
205 objs/src/event/ngx_event_openssl.obj \
206 objs/src/event/ngx_event_openssl_stapling.obj \
207 objs/src/core/ngx_regex.obj \
208 objs/src/http/ngx_http.obj \
209 objs/src/http/ngx_http_core_module.obj \
210 objs/src/http/ngx_http_special_response.obj \
211 objs/src/http/ngx_http_request.obj \
212 objs/src/http/ngx_http_parse.obj \
213 objs/src/http/modules/ngx_http_log_module.obj \
214 objs/src/http/ngx_http_request_body.obj \
215 objs/src/http/ngx_http_variables.obj \
216 objs/src/http/ngx_http_script.obj \
217 objs/src/http/ngx_http_upstream.obj \
218 objs/src/http/ngx_http_upstream_round_robin.obj \
219 objs/src/http/ngx_http_file_cache.obj \
220 objs/src/http/ngx_http_huff_decode.obj \
221 objs/src/http/ngx_http_huff_encode.obj \
222 objs/src/http/ngx_http_write_filter_module.obj \
223 objs/src/http/ngx_http_header_filter_module.obj \
224 objs/src/http/modules/ngx_http_chunked_filter_module.obj \
225 objs/src/http/v2/ngx_http_v2_filter_module.obj \
226 objs/src/http/modules/ngx_http_range_filter_module.obj \
227 objs/src/http/modules/ngx_http_gzip_filter_module.obj \
228 objs/src/http/ngx_http_postpone_filter_module.obj \
229 objs/src/http/modules/ngx_http_ssi_filter_module.obj \
230 objs/src/http/modules/ngx_http_charset_filter_module.obj \
231 objs/src/http/modules/ngx_http_sub_filter_module.obj \
232 objs/src/http/modules/ngx_http_addition_filter_module.obj \
233 objs/src/http/modules/ngx_http_gunzip_filter_module.obj \
234 objs/src/http/modules/ngx_http_userid_filter_module.obj \
235 objs/src/http/modules/ngx_http_headers_filter_module.obj \
236 objs/src/http/ngx_http_copy_filter_module.obj \
237 objs/src/http/modules/ngx_http_not_modified_filter_module.obj \
238 objs/src/http/modules/ngx_http_slice_filter_module.obj \
239 objs/src/http/v2/ngx_http_v2.obj \
240 objs/src/http/v2/ngx_http_v2_table.obj \
241 objs/src/http/v2/ngx_http_v2_encode.obj \
242 objs/src/http/v2/ngx_http_v2_module.obj \
243 objs/src/http/modules/ngx_http_static_module.obj \
244 objs/src/http/modules/ngx_http_gzip_static_module.obj \
245 objs/src/http/modules/ngx_http_dav_module.obj \
246 objs/src/http/modules/ngx_http_autoindex_module.obj \
247 objs/src/http/modules/ngx_http_index_module.obj \
248 objs/src/http/modules/ngx_http_random_index_module.obj \
249 objs/src/http/modules/ngx_http_mirror_module.obj \
250 objs/src/http/modules/ngx_http_try_files_module.obj \
251 objs/src/http/modules/ngx_http_auth_request_module.obj \
252 objs/src/http/modules/ngx_http_auth_basic_module.obj \
253 objs/src/http/modules/ngx_http_access_module.obj \
254 objs/src/http/modules/ngx_http_limit_conn_module.obj \
255 objs/src/http/modules/ngx_http_limit_req_module.obj \
256 objs/src/http/modules/ngx_http_realip_module.obj \
257 objs/src/http/modules/ngx_http_geo_module.obj \
258 objs/src/http/modules/ngx_http_map_module.obj \
259 objs/src/http/modules/ngx_http_split_clients_module.obj \
260 objs/src/http/modules/ngx_http_referer_module.obj \
261 objs/src/http/modules/ngx_http_rewrite_module.obj \
262 objs/src/http/modules/ngx_http_ssl_module.obj \
263 objs/src/http/modules/ngx_http_proxy_module.obj \
264 objs/src/http/modules/ngx_http_fastcgi_module.obj \
265 objs/src/http/modules/ngx_http_uwsgi_module.obj \
266 objs/src/http/modules/ngx_http_scgi_module.obj \
267 objs/src/http/modules/ngx_http_grpc_module.obj \
268 objs/src/http/modules/ngx_http_memcached_module.obj \
269 objs/src/http/modules/ngx_http_empty_gif_module.obj \
270 objs/src/http/modules/ngx_http_browser_module.obj \
271 objs/src/http/modules/ngx_http_secure_link_module.obj \
272 objs/src/http/modules/ngx_http_flv_module.obj \
273 objs/src/http/modules/ngx_http_mp4_module.obj \
274 objs/src/http/modules/ngx_http_upstream_hash_module.obj \
275 objs/src/http/modules/ngx_http_upstream_ip_hash_module.obj \
276 objs/src/http/modules/ngx_http_upstream_least_conn_module.obj \
277 objs/src/http/modules/ngx_http_upstream_random_module.obj \
278 objs/src/http/modules/ngx_http_upstream_keepalive_module.obj \
279 objs/src/http/modules/ngx_http_upstream_zone_module.obj \
280 objs/src/http/modules/ngx_http_stub_status_module.obj \
281 objs/src/mail/ngx_mail.obj \
282 objs/src/mail/ngx_mail_core_module.obj \
283 objs/src/mail/ngx_mail_handler.obj \
284 objs/src/mail/ngx_mail_parse.obj \
285 objs/src/mail/ngx_mail_ssl_module.obj \
286 objs/src/mail/ngx_mail_pop3_module.obj \
287 objs/src/mail/ngx_mail_pop3_handler.obj \
288 objs/src/mail/ngx_mail_imap_module.obj \
289 objs/src/mail/ngx_mail_imap_handler.obj \
290 objs/src/mail/ngx_mail_smtp_module.obj \
291 objs/src/mail/ngx_mail_smtp_handler.obj \
292 objs/src/mail/ngx_mail_auth_http_module.obj \
293 objs/src/mail/ngx_mail_proxy_module.obj \
294 objs/src/mail/ngx_mail_realip_module.obj \
295 objs/src/stream/ngx_stream.obj \
296 objs/src/stream/ngx_stream_variables.obj \
297 objs/src/stream/ngx_stream_script.obj \
298 objs/src/stream/ngx_stream_handler.obj \
299 objs/src/stream/ngx_stream_core_module.obj \
300 objs/src/stream/ngx_stream_log_module.obj \
301 objs/src/stream/ngx_stream_proxy_module.obj \
302 objs/src/stream/ngx_stream_upstream.obj \
303 objs/src/stream/ngx_stream_upstream_round_robin.obj \
304 objs/src/stream/ngx_stream_write_filter_module.obj \
305 objs/src/stream/ngx_stream_ssl_module.obj \
306 objs/src/stream/ngx_stream_limit_conn_module.obj \
307 objs/src/stream/ngx_stream_access_module.obj \
308 objs/src/stream/ngx_stream_geo_module.obj \
309 objs/src/stream/ngx_stream_map_module.obj \
310 objs/src/stream/ngx_stream_split_clients_module.obj \
311 objs/src/stream/ngx_stream_return_module.obj \
312 objs/src/stream/ngx_stream_set_module.obj \
313 objs/src/stream/ngx_stream_upstream_hash_module.obj \
314 objs/src/stream/ngx_stream_upstream_least_conn_module.obj \
315 objs/src/stream/ngx_stream_upstream_random_module.obj \
316 objs/src/stream/ngx_stream_upstream_zone_module.obj \
317 objs/ngx_modules.obj \
318 objs/nginx.res \
319 objs/lib/pcre2-10.40/src/pcre2-8.lib \
320 objs/lib/zlib-1.2.13/zlib.lib
321 $(LINK) -Feobjs/nginx.exe
322 objs/src/core/nginx.obj
323 objs/src/core/ngx_log.obj
324 objs/src/core/ngx_palloc.obj
325 objs/src/core/ngx_array.obj
326 objs/src/core/ngx_list.obj
327 objs/src/core/ngx_hash.obj
328 objs/src/core/ngx_buf.obj
329 objs/src/core/ngx_queue.obj
330 objs/src/core/ngx_output_chain.obj
331 objs/src/core/ngx_string.obj
332 objs/src/core/ngx_parse.obj
333 objs/src/core/ngx_parse_time.obj
334 objs/src/core/ngx_inet.obj
335 objs/src/core/ngx_file.obj
336 objs/src/core/ngx_crc32.obj
337 objs/src/core/ngx_murmurhash.obj
338 objs/src/core/ngx_md5.obj
339 objs/src/core/ngx_sha1.obj
340 objs/src/core/ngx_rbtree.obj
341 objs/src/core/ngx_radix_tree.obj
342 objs/src/core/ngx_slab.obj
343 objs/src/core/ngx_times.obj
344 objs/src/core/ngx_shmtx.obj
345 objs/src/core/ngx_connection.obj
346 objs/src/core/ngx_cycle.obj
347 objs/src/core/ngx_spinlock.obj
348 objs/src/core/ngx_rwlock.obj
349 objs/src/core/ngx_cpuinfo.obj
350 objs/src/core/ngx_conf_file.obj
351 objs/src/core/ngx_module.obj
352 objs/src/core/ngx_resolver.obj
353 objs/src/core/ngx_open_file_cache.obj
354 objs/src/core/ngx_crypt.obj
355 objs/src/core/ngx_proxy_protocol.obj
356 objs/src/core/ngx_syslog.obj
357 objs/src/event/ngx_event.obj
358 objs/src/event/ngx_event_timer.obj
359 objs/src/event/ngx_event_posted.obj
360 objs/src/event/ngx_event_accept.obj
361 objs/src/event/ngx_event_udp.obj
362 objs/src/event/ngx_event_connect.obj
363 objs/src/event/ngx_event_pipe.obj
364 objs/src/os/win32/ngx_errno.obj
365 objs/src/os/win32/ngx_alloc.obj
366 objs/src/os/win32/ngx_files.obj
367 objs/src/os/win32/ngx_shmem.obj
368 objs/src/os/win32/ngx_time.obj
369 objs/src/os/win32/ngx_process.obj
370 objs/src/os/win32/ngx_thread.obj
371 objs/src/os/win32/ngx_socket.obj
372 objs/src/os/win32/ngx_wsarecv.obj
373 objs/src/os/win32/ngx_wsarecv_chain.obj
374 objs/src/os/win32/ngx_udp_wsarecv.obj
375 objs/src/os/win32/ngx_wsasend.obj
376 objs/src/os/win32/ngx_wsasend_chain.obj
377 objs/src/os/win32/ngx_win32_init.obj
378 objs/src/os/win32/ngx_user.obj
379 objs/src/os/win32/ngx_dlopen.obj
380 objs/src/os/win32/ngx_event_log.obj
381 objs/src/os/win32/ngx_process_cycle.obj
382 objs/src/event/ngx_event_acceptex.obj
383 objs/src/event/modules/ngx_iocp_module.obj
384 objs/src/event/modules/ngx_win32_select_module.obj
385 objs/src/event/modules/ngx_win32_poll_module.obj
386 objs/src/event/ngx_event_openssl.obj
387 objs/src/event/ngx_event_openssl_stapling.obj
388 objs/src/core/ngx_regex.obj
389 objs/src/http/ngx_http.obj
390 objs/src/http/ngx_http_core_module.obj
391 objs/src/http/ngx_http_special_response.obj
392 objs/src/http/ngx_http_request.obj
393 objs/src/http/ngx_http_parse.obj
394 objs/src/http/modules/ngx_http_log_module.obj
395 objs/src/http/ngx_http_request_body.obj
396 objs/src/http/ngx_http_variables.obj
397 objs/src/http/ngx_http_script.obj
398 objs/src/http/ngx_http_upstream.obj
399 objs/src/http/ngx_http_upstream_round_robin.obj
400 objs/src/http/ngx_http_file_cache.obj
401 objs/src/http/ngx_http_huff_decode.obj
402 objs/src/http/ngx_http_huff_encode.obj
403 objs/src/http/ngx_http_write_filter_module.obj
404 objs/src/http/ngx_http_header_filter_module.obj
405 objs/src/http/modules/ngx_http_chunked_filter_module.obj
406 objs/src/http/v2/ngx_http_v2_filter_module.obj
407 objs/src/http/modules/ngx_http_range_filter_module.obj
408 objs/src/http/modules/ngx_http_gzip_filter_module.obj
409 objs/src/http/ngx_http_postpone_filter_module.obj
410 objs/src/http/modules/ngx_http_ssi_filter_module.obj
411 objs/src/http/modules/ngx_http_charset_filter_module.obj
412 objs/src/http/modules/ngx_http_sub_filter_module.obj
413 objs/src/http/modules/ngx_http_addition_filter_module.obj
414 objs/src/http/modules/ngx_http_gunzip_filter_module.obj
415 objs/src/http/modules/ngx_http_userid_filter_module.obj
416 objs/src/http/modules/ngx_http_headers_filter_module.obj
417 objs/src/http/ngx_http_copy_filter_module.obj
418 objs/src/http/modules/ngx_http_not_modified_filter_module.obj
419 objs/src/http/modules/ngx_http_slice_filter_module.obj
420 objs/src/http/v2/ngx_http_v2.obj
421 objs/src/http/v2/ngx_http_v2_table.obj
422 objs/src/http/v2/ngx_http_v2_encode.obj
423 objs/src/http/v2/ngx_http_v2_module.obj
424 objs/src/http/modules/ngx_http_static_module.obj
425 objs/src/http/modules/ngx_http_gzip_static_module.obj
426 objs/src/http/modules/ngx_http_dav_module.obj
427 objs/src/http/modules/ngx_http_autoindex_module.obj
428 objs/src/http/modules/ngx_http_index_module.obj
429 objs/src/http/modules/ngx_http_random_index_module.obj
430 objs/src/http/modules/ngx_http_mirror_module.obj
431 objs/src/http/modules/ngx_http_try_files_module.obj
432 objs/src/http/modules/ngx_http_auth_request_module.obj
433 objs/src/http/modules/ngx_http_auth_basic_module.obj
434 objs/src/http/modules/ngx_http_access_module.obj
435 objs/src/http/modules/ngx_http_limit_conn_module.obj
436 objs/src/http/modules/ngx_http_limit_req_module.obj
437 objs/src/http/modules/ngx_http_realip_module.obj
438 objs/src/http/modules/ngx_http_geo_module.obj
439 objs/src/http/modules/ngx_http_map_module.obj
440 objs/src/http/modules/ngx_http_split_clients_module.obj
441 objs/src/http/modules/ngx_http_referer_module.obj
442 objs/src/http/modules/ngx_http_rewrite_module.obj
443 objs/src/http/modules/ngx_http_ssl_module.obj
444 objs/src/http/modules/ngx_http_proxy_module.obj
445 objs/src/http/modules/ngx_http_fastcgi_module.obj
446 objs/src/http/modules/ngx_http_uwsgi_module.obj
447 objs/src/http/modules/ngx_http_scgi_module.obj
448 objs/src/http/modules/ngx_http_grpc_module.obj
449 objs/src/http/modules/ngx_http_memcached_module.obj
450 objs/src/http/modules/ngx_http_empty_gif_module.obj
451 objs/src/http/modules/ngx_http_browser_module.obj
452 objs/src/http/modules/ngx_http_secure_link_module.obj
453 objs/src/http/modules/ngx_http_flv_module.obj
454 objs/src/http/modules/ngx_http_mp4_module.obj
455 objs/src/http/modules/ngx_http_upstream_hash_module.obj
456 objs/src/http/modules/ngx_http_upstream_ip_hash_module.obj
457 objs/src/http/modules/ngx_http_upstream_least_conn_module.obj
458 objs/src/http/modules/ngx_http_upstream_random_module.obj
459 objs/src/http/modules/ngx_http_upstream_keepalive_module.obj
460 objs/src/http/modules/ngx_http_upstream_zone_module.obj
461 objs/src/http/modules/ngx_http_stub_status_module.obj
462 objs/src/mail/ngx_mail.obj
463 objs/src/mail/ngx_mail_core_module.obj
464 objs/src/mail/ngx_mail_handler.obj
465 objs/src/mail/ngx_mail_parse.obj
466 objs/src/mail/ngx_mail_ssl_module.obj
467 objs/src/mail/ngx_mail_pop3_module.obj
468 objs/src/mail/ngx_mail_pop3_handler.obj
469 objs/src/mail/ngx_mail_imap_module.obj
470 objs/src/mail/ngx_mail_imap_handler.obj
471 objs/src/mail/ngx_mail_smtp_module.obj
472 objs/src/mail/ngx_mail_smtp_handler.obj
473 objs/src/mail/ngx_mail_auth_http_module.obj
474 objs/src/mail/ngx_mail_proxy_module.obj
475 objs/src/mail/ngx_mail_realip_module.obj
476 objs/src/stream/ngx_stream.obj
477 objs/src/stream/ngx_stream_variables.obj
478 objs/src/stream/ngx_stream_script.obj
479 objs/src/stream/ngx_stream_handler.obj
480 objs/src/stream/ngx_stream_core_module.obj
481 objs/src/stream/ngx_stream_log_module.obj
482 objs/src/stream/ngx_stream_proxy_module.obj
483 objs/src/stream/ngx_stream_upstream.obj
484 objs/src/stream/ngx_stream_upstream_round_robin.obj
485 objs/src/stream/ngx_stream_write_filter_module.obj
486 objs/src/stream/ngx_stream_ssl_module.obj
487 objs/src/stream/ngx_stream_limit_conn_module.obj
488 objs/src/stream/ngx_stream_access_module.obj
489 objs/src/stream/ngx_stream_geo_module.obj
490 objs/src/stream/ngx_stream_map_module.obj
491 objs/src/stream/ngx_stream_split_clients_module.obj
492 objs/src/stream/ngx_stream_return_module.obj
493 objs/src/stream/ngx_stream_set_module.obj
494 objs/src/stream/ngx_stream_upstream_hash_module.obj
495 objs/src/stream/ngx_stream_upstream_least_conn_module.obj
496 objs/src/stream/ngx_stream_upstream_random_module.obj
497 objs/src/stream/ngx_stream_upstream_zone_module.obj
498 objs/ngx_modules.obj
499 kernel32.lib user32.lib advapi32.lib ws2_32.lib objs/lib/pcre2-10.40/src/pcre2-8.lib objs/lib/openssl/openssl/lib/libssl.lib objs/lib/openssl/openssl/lib/libcrypto.lib gdi32.lib crypt32.lib objs/lib/zlib-1.2.13/zlib.lib
500 objs/nginx.res -link -verbose:lib -debug objs/ngx_pch.obj
501
502
503
504modules:
505
506objs/ngx_modules.obj: $(CORE_DEPS) \
507 objs/ngx_modules.c
508 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
509 -Foobjs/ngx_modules.obj \
510 objs/ngx_modules.c
511
512
513objs/src/core/nginx.obj: $(CORE_DEPS) \
514 src/core/nginx.c
515 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
516 -Foobjs/src/core/nginx.obj \
517 src/core/nginx.c
518
519
520objs/src/core/ngx_log.obj: $(CORE_DEPS) \
521 src/core/ngx_log.c
522 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
523 -Foobjs/src/core/ngx_log.obj \
524 src/core/ngx_log.c
525
526
527objs/src/core/ngx_palloc.obj: $(CORE_DEPS) \
528 src/core/ngx_palloc.c
529 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
530 -Foobjs/src/core/ngx_palloc.obj \
531 src/core/ngx_palloc.c
532
533
534objs/src/core/ngx_array.obj: $(CORE_DEPS) \
535 src/core/ngx_array.c
536 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
537 -Foobjs/src/core/ngx_array.obj \
538 src/core/ngx_array.c
539
540
541objs/src/core/ngx_list.obj: $(CORE_DEPS) \
542 src/core/ngx_list.c
543 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
544 -Foobjs/src/core/ngx_list.obj \
545 src/core/ngx_list.c
546
547
548objs/src/core/ngx_hash.obj: $(CORE_DEPS) \
549 src/core/ngx_hash.c
550 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
551 -Foobjs/src/core/ngx_hash.obj \
552 src/core/ngx_hash.c
553
554
555objs/src/core/ngx_buf.obj: $(CORE_DEPS) \
556 src/core/ngx_buf.c
557 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
558 -Foobjs/src/core/ngx_buf.obj \
559 src/core/ngx_buf.c
560
561
562objs/src/core/ngx_queue.obj: $(CORE_DEPS) \
563 src/core/ngx_queue.c
564 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
565 -Foobjs/src/core/ngx_queue.obj \
566 src/core/ngx_queue.c
567
568
569objs/src/core/ngx_output_chain.obj: $(CORE_DEPS) \
570 src/core/ngx_output_chain.c
571 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
572 -Foobjs/src/core/ngx_output_chain.obj \
573 src/core/ngx_output_chain.c
574
575
576objs/src/core/ngx_string.obj: $(CORE_DEPS) \
577 src/core/ngx_string.c
578 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
579 -Foobjs/src/core/ngx_string.obj \
580 src/core/ngx_string.c
581
582
583objs/src/core/ngx_parse.obj: $(CORE_DEPS) \
584 src/core/ngx_parse.c
585 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
586 -Foobjs/src/core/ngx_parse.obj \
587 src/core/ngx_parse.c
588
589
590objs/src/core/ngx_parse_time.obj: $(CORE_DEPS) \
591 src/core/ngx_parse_time.c
592 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
593 -Foobjs/src/core/ngx_parse_time.obj \
594 src/core/ngx_parse_time.c
595
596
597objs/src/core/ngx_inet.obj: $(CORE_DEPS) \
598 src/core/ngx_inet.c
599 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
600 -Foobjs/src/core/ngx_inet.obj \
601 src/core/ngx_inet.c
602
603
604objs/src/core/ngx_file.obj: $(CORE_DEPS) \
605 src/core/ngx_file.c
606 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
607 -Foobjs/src/core/ngx_file.obj \
608 src/core/ngx_file.c
609
610
611objs/src/core/ngx_crc32.obj: $(CORE_DEPS) \
612 src/core/ngx_crc32.c
613 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
614 -Foobjs/src/core/ngx_crc32.obj \
615 src/core/ngx_crc32.c
616
617
618objs/src/core/ngx_murmurhash.obj: $(CORE_DEPS) \
619 src/core/ngx_murmurhash.c
620 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
621 -Foobjs/src/core/ngx_murmurhash.obj \
622 src/core/ngx_murmurhash.c
623
624
625objs/src/core/ngx_md5.obj: $(CORE_DEPS) \
626 src/core/ngx_md5.c
627 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
628 -Foobjs/src/core/ngx_md5.obj \
629 src/core/ngx_md5.c
630
631
632objs/src/core/ngx_sha1.obj: $(CORE_DEPS) \
633 src/core/ngx_sha1.c
634 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
635 -Foobjs/src/core/ngx_sha1.obj \
636 src/core/ngx_sha1.c
637
638
639objs/src/core/ngx_rbtree.obj: $(CORE_DEPS) \
640 src/core/ngx_rbtree.c
641 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
642 -Foobjs/src/core/ngx_rbtree.obj \
643 src/core/ngx_rbtree.c
644
645
646objs/src/core/ngx_radix_tree.obj: $(CORE_DEPS) \
647 src/core/ngx_radix_tree.c
648 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
649 -Foobjs/src/core/ngx_radix_tree.obj \
650 src/core/ngx_radix_tree.c
651
652
653objs/src/core/ngx_slab.obj: $(CORE_DEPS) \
654 src/core/ngx_slab.c
655 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
656 -Foobjs/src/core/ngx_slab.obj \
657 src/core/ngx_slab.c
658
659
660objs/src/core/ngx_times.obj: $(CORE_DEPS) \
661 src/core/ngx_times.c
662 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
663 -Foobjs/src/core/ngx_times.obj \
664 src/core/ngx_times.c
665
666
667objs/src/core/ngx_shmtx.obj: $(CORE_DEPS) \
668 src/core/ngx_shmtx.c
669 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
670 -Foobjs/src/core/ngx_shmtx.obj \
671 src/core/ngx_shmtx.c
672
673
674objs/src/core/ngx_connection.obj: $(CORE_DEPS) \
675 src/core/ngx_connection.c
676 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
677 -Foobjs/src/core/ngx_connection.obj \
678 src/core/ngx_connection.c
679
680
681objs/src/core/ngx_cycle.obj: $(CORE_DEPS) \
682 src/core/ngx_cycle.c
683 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
684 -Foobjs/src/core/ngx_cycle.obj \
685 src/core/ngx_cycle.c
686
687
688objs/src/core/ngx_spinlock.obj: $(CORE_DEPS) \
689 src/core/ngx_spinlock.c
690 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
691 -Foobjs/src/core/ngx_spinlock.obj \
692 src/core/ngx_spinlock.c
693
694
695objs/src/core/ngx_rwlock.obj: $(CORE_DEPS) \
696 src/core/ngx_rwlock.c
697 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
698 -Foobjs/src/core/ngx_rwlock.obj \
699 src/core/ngx_rwlock.c
700
701
702objs/src/core/ngx_cpuinfo.obj: $(CORE_DEPS) \
703 src/core/ngx_cpuinfo.c
704 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
705 -Foobjs/src/core/ngx_cpuinfo.obj \
706 src/core/ngx_cpuinfo.c
707
708
709objs/src/core/ngx_conf_file.obj: $(CORE_DEPS) \
710 src/core/ngx_conf_file.c
711 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
712 -Foobjs/src/core/ngx_conf_file.obj \
713 src/core/ngx_conf_file.c
714
715
716objs/src/core/ngx_module.obj: $(CORE_DEPS) \
717 src/core/ngx_module.c
718 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
719 -Foobjs/src/core/ngx_module.obj \
720 src/core/ngx_module.c
721
722
723objs/src/core/ngx_resolver.obj: $(CORE_DEPS) \
724 src/core/ngx_resolver.c
725 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
726 -Foobjs/src/core/ngx_resolver.obj \
727 src/core/ngx_resolver.c
728
729
730objs/src/core/ngx_open_file_cache.obj: $(CORE_DEPS) \
731 src/core/ngx_open_file_cache.c
732 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
733 -Foobjs/src/core/ngx_open_file_cache.obj \
734 src/core/ngx_open_file_cache.c
735
736
737objs/src/core/ngx_crypt.obj: $(CORE_DEPS) \
738 src/core/ngx_crypt.c
739 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
740 -Foobjs/src/core/ngx_crypt.obj \
741 src/core/ngx_crypt.c
742
743
744objs/src/core/ngx_proxy_protocol.obj: $(CORE_DEPS) \
745 src/core/ngx_proxy_protocol.c
746 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
747 -Foobjs/src/core/ngx_proxy_protocol.obj \
748 src/core/ngx_proxy_protocol.c
749
750
751objs/src/core/ngx_syslog.obj: $(CORE_DEPS) \
752 src/core/ngx_syslog.c
753 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
754 -Foobjs/src/core/ngx_syslog.obj \
755 src/core/ngx_syslog.c
756
757
758objs/src/event/ngx_event.obj: $(CORE_DEPS) \
759 src/event/ngx_event.c
760 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
761 -Foobjs/src/event/ngx_event.obj \
762 src/event/ngx_event.c
763
764
765objs/src/event/ngx_event_timer.obj: $(CORE_DEPS) \
766 src/event/ngx_event_timer.c
767 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
768 -Foobjs/src/event/ngx_event_timer.obj \
769 src/event/ngx_event_timer.c
770
771
772objs/src/event/ngx_event_posted.obj: $(CORE_DEPS) \
773 src/event/ngx_event_posted.c
774 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
775 -Foobjs/src/event/ngx_event_posted.obj \
776 src/event/ngx_event_posted.c
777
778
779objs/src/event/ngx_event_accept.obj: $(CORE_DEPS) \
780 src/event/ngx_event_accept.c
781 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
782 -Foobjs/src/event/ngx_event_accept.obj \
783 src/event/ngx_event_accept.c
784
785
786objs/src/event/ngx_event_udp.obj: $(CORE_DEPS) \
787 src/event/ngx_event_udp.c
788 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
789 -Foobjs/src/event/ngx_event_udp.obj \
790 src/event/ngx_event_udp.c
791
792
793objs/src/event/ngx_event_connect.obj: $(CORE_DEPS) \
794 src/event/ngx_event_connect.c
795 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
796 -Foobjs/src/event/ngx_event_connect.obj \
797 src/event/ngx_event_connect.c
798
799
800objs/src/event/ngx_event_pipe.obj: $(CORE_DEPS) \
801 src/event/ngx_event_pipe.c
802 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
803 -Foobjs/src/event/ngx_event_pipe.obj \
804 src/event/ngx_event_pipe.c
805
806
807objs/src/os/win32/ngx_errno.obj: $(CORE_DEPS) \
808 src/os/win32/ngx_errno.c
809 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
810 -Foobjs/src/os/win32/ngx_errno.obj \
811 src/os/win32/ngx_errno.c
812
813
814objs/src/os/win32/ngx_alloc.obj: $(CORE_DEPS) \
815 src/os/win32/ngx_alloc.c
816 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
817 -Foobjs/src/os/win32/ngx_alloc.obj \
818 src/os/win32/ngx_alloc.c
819
820
821objs/src/os/win32/ngx_files.obj: $(CORE_DEPS) \
822 src/os/win32/ngx_files.c
823 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
824 -Foobjs/src/os/win32/ngx_files.obj \
825 src/os/win32/ngx_files.c
826
827
828objs/src/os/win32/ngx_shmem.obj: $(CORE_DEPS) \
829 src/os/win32/ngx_shmem.c
830 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
831 -Foobjs/src/os/win32/ngx_shmem.obj \
832 src/os/win32/ngx_shmem.c
833
834
835objs/src/os/win32/ngx_time.obj: $(CORE_DEPS) \
836 src/os/win32/ngx_time.c
837 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
838 -Foobjs/src/os/win32/ngx_time.obj \
839 src/os/win32/ngx_time.c
840
841
842objs/src/os/win32/ngx_process.obj: $(CORE_DEPS) \
843 src/os/win32/ngx_process.c
844 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
845 -Foobjs/src/os/win32/ngx_process.obj \
846 src/os/win32/ngx_process.c
847
848
849objs/src/os/win32/ngx_thread.obj: $(CORE_DEPS) \
850 src/os/win32/ngx_thread.c
851 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
852 -Foobjs/src/os/win32/ngx_thread.obj \
853 src/os/win32/ngx_thread.c
854
855
856objs/src/os/win32/ngx_socket.obj: $(CORE_DEPS) \
857 src/os/win32/ngx_socket.c
858 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
859 -Foobjs/src/os/win32/ngx_socket.obj \
860 src/os/win32/ngx_socket.c
861
862
863objs/src/os/win32/ngx_wsarecv.obj: $(CORE_DEPS) \
864 src/os/win32/ngx_wsarecv.c
865 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
866 -Foobjs/src/os/win32/ngx_wsarecv.obj \
867 src/os/win32/ngx_wsarecv.c
868
869
870objs/src/os/win32/ngx_wsarecv_chain.obj: $(CORE_DEPS) \
871 src/os/win32/ngx_wsarecv_chain.c
872 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
873 -Foobjs/src/os/win32/ngx_wsarecv_chain.obj \
874 src/os/win32/ngx_wsarecv_chain.c
875
876
877objs/src/os/win32/ngx_udp_wsarecv.obj: $(CORE_DEPS) \
878 src/os/win32/ngx_udp_wsarecv.c
879 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
880 -Foobjs/src/os/win32/ngx_udp_wsarecv.obj \
881 src/os/win32/ngx_udp_wsarecv.c
882
883
884objs/src/os/win32/ngx_wsasend.obj: $(CORE_DEPS) \
885 src/os/win32/ngx_wsasend.c
886 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
887 -Foobjs/src/os/win32/ngx_wsasend.obj \
888 src/os/win32/ngx_wsasend.c
889
890
891objs/src/os/win32/ngx_wsasend_chain.obj: $(CORE_DEPS) \
892 src/os/win32/ngx_wsasend_chain.c
893 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
894 -Foobjs/src/os/win32/ngx_wsasend_chain.obj \
895 src/os/win32/ngx_wsasend_chain.c
896
897
898objs/src/os/win32/ngx_win32_init.obj: $(CORE_DEPS) \
899 src/os/win32/ngx_win32_init.c
900 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
901 -Foobjs/src/os/win32/ngx_win32_init.obj \
902 src/os/win32/ngx_win32_init.c
903
904
905objs/src/os/win32/ngx_user.obj: $(CORE_DEPS) \
906 src/os/win32/ngx_user.c
907 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
908 -Foobjs/src/os/win32/ngx_user.obj \
909 src/os/win32/ngx_user.c
910
911
912objs/src/os/win32/ngx_dlopen.obj: $(CORE_DEPS) \
913 src/os/win32/ngx_dlopen.c
914 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
915 -Foobjs/src/os/win32/ngx_dlopen.obj \
916 src/os/win32/ngx_dlopen.c
917
918
919objs/src/os/win32/ngx_event_log.obj: $(CORE_DEPS) \
920 src/os/win32/ngx_event_log.c
921 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
922 -Foobjs/src/os/win32/ngx_event_log.obj \
923 src/os/win32/ngx_event_log.c
924
925
926objs/src/os/win32/ngx_process_cycle.obj: $(CORE_DEPS) \
927 src/os/win32/ngx_process_cycle.c
928 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
929 -Foobjs/src/os/win32/ngx_process_cycle.obj \
930 src/os/win32/ngx_process_cycle.c
931
932
933objs/src/event/ngx_event_acceptex.obj: $(CORE_DEPS) \
934 src/event/ngx_event_acceptex.c
935 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
936 -Foobjs/src/event/ngx_event_acceptex.obj \
937 src/event/ngx_event_acceptex.c
938
939
940objs/src/event/modules/ngx_iocp_module.obj: $(CORE_DEPS) \
941 src/event/modules/ngx_iocp_module.c
942 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
943 -Foobjs/src/event/modules/ngx_iocp_module.obj \
944 src/event/modules/ngx_iocp_module.c
945
946
947objs/src/event/modules/ngx_win32_select_module.obj: $(CORE_DEPS) \
948 src/event/modules/ngx_win32_select_module.c
949 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
950 -Foobjs/src/event/modules/ngx_win32_select_module.obj \
951 src/event/modules/ngx_win32_select_module.c
952
953
954objs/src/event/modules/ngx_win32_poll_module.obj: $(CORE_DEPS) \
955 src/event/modules/ngx_win32_poll_module.c
956 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
957 -Foobjs/src/event/modules/ngx_win32_poll_module.obj \
958 src/event/modules/ngx_win32_poll_module.c
959
960
961objs/src/event/ngx_event_openssl.obj: $(CORE_DEPS) \
962 src/event/ngx_event_openssl.c
963 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
964 -Foobjs/src/event/ngx_event_openssl.obj \
965 src/event/ngx_event_openssl.c
966
967
968objs/src/event/ngx_event_openssl_stapling.obj: $(CORE_DEPS) \
969 src/event/ngx_event_openssl_stapling.c
970 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
971 -Foobjs/src/event/ngx_event_openssl_stapling.obj \
972 src/event/ngx_event_openssl_stapling.c
973
974
975objs/src/core/ngx_regex.obj: $(CORE_DEPS) \
976 src/core/ngx_regex.c
977 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
978 -Foobjs/src/core/ngx_regex.obj \
979 src/core/ngx_regex.c
980
981
982objs/src/http/ngx_http.obj: $(CORE_DEPS) $(HTTP_DEPS) \
983 src/http/ngx_http.c
984 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
985 -Foobjs/src/http/ngx_http.obj \
986 src/http/ngx_http.c
987
988
989objs/src/http/ngx_http_core_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
990 src/http/ngx_http_core_module.c
991 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
992 -Foobjs/src/http/ngx_http_core_module.obj \
993 src/http/ngx_http_core_module.c
994
995
996objs/src/http/ngx_http_special_response.obj: $(CORE_DEPS) $(HTTP_DEPS) \
997 src/http/ngx_http_special_response.c
998 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
999 -Foobjs/src/http/ngx_http_special_response.obj \
1000 src/http/ngx_http_special_response.c
1001
1002
1003objs/src/http/ngx_http_request.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1004 src/http/ngx_http_request.c
1005 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1006 -Foobjs/src/http/ngx_http_request.obj \
1007 src/http/ngx_http_request.c
1008
1009
1010objs/src/http/ngx_http_parse.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1011 src/http/ngx_http_parse.c
1012 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1013 -Foobjs/src/http/ngx_http_parse.obj \
1014 src/http/ngx_http_parse.c
1015
1016
1017objs/src/http/modules/ngx_http_log_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1018 src/http/modules/ngx_http_log_module.c
1019 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1020 -Foobjs/src/http/modules/ngx_http_log_module.obj \
1021 src/http/modules/ngx_http_log_module.c
1022
1023
1024objs/src/http/ngx_http_request_body.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1025 src/http/ngx_http_request_body.c
1026 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1027 -Foobjs/src/http/ngx_http_request_body.obj \
1028 src/http/ngx_http_request_body.c
1029
1030
1031objs/src/http/ngx_http_variables.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1032 src/http/ngx_http_variables.c
1033 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1034 -Foobjs/src/http/ngx_http_variables.obj \
1035 src/http/ngx_http_variables.c
1036
1037
1038objs/src/http/ngx_http_script.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1039 src/http/ngx_http_script.c
1040 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1041 -Foobjs/src/http/ngx_http_script.obj \
1042 src/http/ngx_http_script.c
1043
1044
1045objs/src/http/ngx_http_upstream.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1046 src/http/ngx_http_upstream.c
1047 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1048 -Foobjs/src/http/ngx_http_upstream.obj \
1049 src/http/ngx_http_upstream.c
1050
1051
1052objs/src/http/ngx_http_upstream_round_robin.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1053 src/http/ngx_http_upstream_round_robin.c
1054 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1055 -Foobjs/src/http/ngx_http_upstream_round_robin.obj \
1056 src/http/ngx_http_upstream_round_robin.c
1057
1058
1059objs/src/http/ngx_http_file_cache.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1060 src/http/ngx_http_file_cache.c
1061 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1062 -Foobjs/src/http/ngx_http_file_cache.obj \
1063 src/http/ngx_http_file_cache.c
1064
1065
1066objs/src/http/ngx_http_huff_decode.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1067 src/http/ngx_http_huff_decode.c
1068 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1069 -Foobjs/src/http/ngx_http_huff_decode.obj \
1070 src/http/ngx_http_huff_decode.c
1071
1072
1073objs/src/http/ngx_http_huff_encode.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1074 src/http/ngx_http_huff_encode.c
1075 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1076 -Foobjs/src/http/ngx_http_huff_encode.obj \
1077 src/http/ngx_http_huff_encode.c
1078
1079
1080objs/src/http/ngx_http_write_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1081 src/http/ngx_http_write_filter_module.c
1082 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1083 -Foobjs/src/http/ngx_http_write_filter_module.obj \
1084 src/http/ngx_http_write_filter_module.c
1085
1086
1087objs/src/http/ngx_http_header_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1088 src/http/ngx_http_header_filter_module.c
1089 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1090 -Foobjs/src/http/ngx_http_header_filter_module.obj \
1091 src/http/ngx_http_header_filter_module.c
1092
1093
1094objs/src/http/modules/ngx_http_chunked_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1095 src/http/modules/ngx_http_chunked_filter_module.c
1096 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1097 -Foobjs/src/http/modules/ngx_http_chunked_filter_module.obj \
1098 src/http/modules/ngx_http_chunked_filter_module.c
1099
1100
1101objs/src/http/v2/ngx_http_v2_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1102 src/http/v2/ngx_http_v2_filter_module.c
1103 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1104 -Foobjs/src/http/v2/ngx_http_v2_filter_module.obj \
1105 src/http/v2/ngx_http_v2_filter_module.c
1106
1107
1108objs/src/http/modules/ngx_http_range_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1109 src/http/modules/ngx_http_range_filter_module.c
1110 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1111 -Foobjs/src/http/modules/ngx_http_range_filter_module.obj \
1112 src/http/modules/ngx_http_range_filter_module.c
1113
1114
1115objs/src/http/modules/ngx_http_gzip_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1116 src/http/modules/ngx_http_gzip_filter_module.c
1117 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1118 -Foobjs/src/http/modules/ngx_http_gzip_filter_module.obj \
1119 src/http/modules/ngx_http_gzip_filter_module.c
1120
1121
1122objs/src/http/ngx_http_postpone_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1123 src/http/ngx_http_postpone_filter_module.c
1124 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1125 -Foobjs/src/http/ngx_http_postpone_filter_module.obj \
1126 src/http/ngx_http_postpone_filter_module.c
1127
1128
1129objs/src/http/modules/ngx_http_ssi_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1130 src/http/modules/ngx_http_ssi_filter_module.c
1131 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1132 -Foobjs/src/http/modules/ngx_http_ssi_filter_module.obj \
1133 src/http/modules/ngx_http_ssi_filter_module.c
1134
1135
1136objs/src/http/modules/ngx_http_charset_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1137 src/http/modules/ngx_http_charset_filter_module.c
1138 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1139 -Foobjs/src/http/modules/ngx_http_charset_filter_module.obj \
1140 src/http/modules/ngx_http_charset_filter_module.c
1141
1142
1143objs/src/http/modules/ngx_http_sub_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1144 src/http/modules/ngx_http_sub_filter_module.c
1145 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1146 -Foobjs/src/http/modules/ngx_http_sub_filter_module.obj \
1147 src/http/modules/ngx_http_sub_filter_module.c
1148
1149
1150objs/src/http/modules/ngx_http_addition_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1151 src/http/modules/ngx_http_addition_filter_module.c
1152 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1153 -Foobjs/src/http/modules/ngx_http_addition_filter_module.obj \
1154 src/http/modules/ngx_http_addition_filter_module.c
1155
1156
1157objs/src/http/modules/ngx_http_gunzip_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1158 src/http/modules/ngx_http_gunzip_filter_module.c
1159 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1160 -Foobjs/src/http/modules/ngx_http_gunzip_filter_module.obj \
1161 src/http/modules/ngx_http_gunzip_filter_module.c
1162
1163
1164objs/src/http/modules/ngx_http_userid_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1165 src/http/modules/ngx_http_userid_filter_module.c
1166 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1167 -Foobjs/src/http/modules/ngx_http_userid_filter_module.obj \
1168 src/http/modules/ngx_http_userid_filter_module.c
1169
1170
1171objs/src/http/modules/ngx_http_headers_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1172 src/http/modules/ngx_http_headers_filter_module.c
1173 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1174 -Foobjs/src/http/modules/ngx_http_headers_filter_module.obj \
1175 src/http/modules/ngx_http_headers_filter_module.c
1176
1177
1178objs/src/http/ngx_http_copy_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1179 src/http/ngx_http_copy_filter_module.c
1180 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1181 -Foobjs/src/http/ngx_http_copy_filter_module.obj \
1182 src/http/ngx_http_copy_filter_module.c
1183
1184
1185objs/src/http/modules/ngx_http_not_modified_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1186 src/http/modules/ngx_http_not_modified_filter_module.c
1187 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1188 -Foobjs/src/http/modules/ngx_http_not_modified_filter_module.obj \
1189 src/http/modules/ngx_http_not_modified_filter_module.c
1190
1191
1192objs/src/http/modules/ngx_http_slice_filter_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1193 src/http/modules/ngx_http_slice_filter_module.c
1194 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1195 -Foobjs/src/http/modules/ngx_http_slice_filter_module.obj \
1196 src/http/modules/ngx_http_slice_filter_module.c
1197
1198
1199objs/src/http/v2/ngx_http_v2.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1200 src/http/v2/ngx_http_v2.c
1201 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1202 -Foobjs/src/http/v2/ngx_http_v2.obj \
1203 src/http/v2/ngx_http_v2.c
1204
1205
1206objs/src/http/v2/ngx_http_v2_table.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1207 src/http/v2/ngx_http_v2_table.c
1208 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1209 -Foobjs/src/http/v2/ngx_http_v2_table.obj \
1210 src/http/v2/ngx_http_v2_table.c
1211
1212
1213objs/src/http/v2/ngx_http_v2_encode.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1214 src/http/v2/ngx_http_v2_encode.c
1215 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1216 -Foobjs/src/http/v2/ngx_http_v2_encode.obj \
1217 src/http/v2/ngx_http_v2_encode.c
1218
1219
1220objs/src/http/v2/ngx_http_v2_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1221 src/http/v2/ngx_http_v2_module.c
1222 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1223 -Foobjs/src/http/v2/ngx_http_v2_module.obj \
1224 src/http/v2/ngx_http_v2_module.c
1225
1226
1227objs/src/http/modules/ngx_http_static_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1228 src/http/modules/ngx_http_static_module.c
1229 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1230 -Foobjs/src/http/modules/ngx_http_static_module.obj \
1231 src/http/modules/ngx_http_static_module.c
1232
1233
1234objs/src/http/modules/ngx_http_gzip_static_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1235 src/http/modules/ngx_http_gzip_static_module.c
1236 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1237 -Foobjs/src/http/modules/ngx_http_gzip_static_module.obj \
1238 src/http/modules/ngx_http_gzip_static_module.c
1239
1240
1241objs/src/http/modules/ngx_http_dav_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1242 src/http/modules/ngx_http_dav_module.c
1243 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1244 -Foobjs/src/http/modules/ngx_http_dav_module.obj \
1245 src/http/modules/ngx_http_dav_module.c
1246
1247
1248objs/src/http/modules/ngx_http_autoindex_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1249 src/http/modules/ngx_http_autoindex_module.c
1250 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1251 -Foobjs/src/http/modules/ngx_http_autoindex_module.obj \
1252 src/http/modules/ngx_http_autoindex_module.c
1253
1254
1255objs/src/http/modules/ngx_http_index_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1256 src/http/modules/ngx_http_index_module.c
1257 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1258 -Foobjs/src/http/modules/ngx_http_index_module.obj \
1259 src/http/modules/ngx_http_index_module.c
1260
1261
1262objs/src/http/modules/ngx_http_random_index_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1263 src/http/modules/ngx_http_random_index_module.c
1264 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1265 -Foobjs/src/http/modules/ngx_http_random_index_module.obj \
1266 src/http/modules/ngx_http_random_index_module.c
1267
1268
1269objs/src/http/modules/ngx_http_mirror_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1270 src/http/modules/ngx_http_mirror_module.c
1271 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1272 -Foobjs/src/http/modules/ngx_http_mirror_module.obj \
1273 src/http/modules/ngx_http_mirror_module.c
1274
1275
1276objs/src/http/modules/ngx_http_try_files_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1277 src/http/modules/ngx_http_try_files_module.c
1278 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1279 -Foobjs/src/http/modules/ngx_http_try_files_module.obj \
1280 src/http/modules/ngx_http_try_files_module.c
1281
1282
1283objs/src/http/modules/ngx_http_auth_request_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1284 src/http/modules/ngx_http_auth_request_module.c
1285 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1286 -Foobjs/src/http/modules/ngx_http_auth_request_module.obj \
1287 src/http/modules/ngx_http_auth_request_module.c
1288
1289
1290objs/src/http/modules/ngx_http_auth_basic_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1291 src/http/modules/ngx_http_auth_basic_module.c
1292 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1293 -Foobjs/src/http/modules/ngx_http_auth_basic_module.obj \
1294 src/http/modules/ngx_http_auth_basic_module.c
1295
1296
1297objs/src/http/modules/ngx_http_access_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1298 src/http/modules/ngx_http_access_module.c
1299 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1300 -Foobjs/src/http/modules/ngx_http_access_module.obj \
1301 src/http/modules/ngx_http_access_module.c
1302
1303
1304objs/src/http/modules/ngx_http_limit_conn_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1305 src/http/modules/ngx_http_limit_conn_module.c
1306 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1307 -Foobjs/src/http/modules/ngx_http_limit_conn_module.obj \
1308 src/http/modules/ngx_http_limit_conn_module.c
1309
1310
1311objs/src/http/modules/ngx_http_limit_req_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1312 src/http/modules/ngx_http_limit_req_module.c
1313 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1314 -Foobjs/src/http/modules/ngx_http_limit_req_module.obj \
1315 src/http/modules/ngx_http_limit_req_module.c
1316
1317
1318objs/src/http/modules/ngx_http_realip_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1319 src/http/modules/ngx_http_realip_module.c
1320 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1321 -Foobjs/src/http/modules/ngx_http_realip_module.obj \
1322 src/http/modules/ngx_http_realip_module.c
1323
1324
1325objs/src/http/modules/ngx_http_geo_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1326 src/http/modules/ngx_http_geo_module.c
1327 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1328 -Foobjs/src/http/modules/ngx_http_geo_module.obj \
1329 src/http/modules/ngx_http_geo_module.c
1330
1331
1332objs/src/http/modules/ngx_http_map_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1333 src/http/modules/ngx_http_map_module.c
1334 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1335 -Foobjs/src/http/modules/ngx_http_map_module.obj \
1336 src/http/modules/ngx_http_map_module.c
1337
1338
1339objs/src/http/modules/ngx_http_split_clients_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1340 src/http/modules/ngx_http_split_clients_module.c
1341 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1342 -Foobjs/src/http/modules/ngx_http_split_clients_module.obj \
1343 src/http/modules/ngx_http_split_clients_module.c
1344
1345
1346objs/src/http/modules/ngx_http_referer_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1347 src/http/modules/ngx_http_referer_module.c
1348 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1349 -Foobjs/src/http/modules/ngx_http_referer_module.obj \
1350 src/http/modules/ngx_http_referer_module.c
1351
1352
1353objs/src/http/modules/ngx_http_rewrite_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1354 src/http/modules/ngx_http_rewrite_module.c
1355 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1356 -Foobjs/src/http/modules/ngx_http_rewrite_module.obj \
1357 src/http/modules/ngx_http_rewrite_module.c
1358
1359
1360objs/src/http/modules/ngx_http_ssl_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1361 src/http/modules/ngx_http_ssl_module.c
1362 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1363 -Foobjs/src/http/modules/ngx_http_ssl_module.obj \
1364 src/http/modules/ngx_http_ssl_module.c
1365
1366
1367objs/src/http/modules/ngx_http_proxy_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1368 src/http/modules/ngx_http_proxy_module.c
1369 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1370 -Foobjs/src/http/modules/ngx_http_proxy_module.obj \
1371 src/http/modules/ngx_http_proxy_module.c
1372
1373
1374objs/src/http/modules/ngx_http_fastcgi_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1375 src/http/modules/ngx_http_fastcgi_module.c
1376 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1377 -Foobjs/src/http/modules/ngx_http_fastcgi_module.obj \
1378 src/http/modules/ngx_http_fastcgi_module.c
1379
1380
1381objs/src/http/modules/ngx_http_uwsgi_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1382 src/http/modules/ngx_http_uwsgi_module.c
1383 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1384 -Foobjs/src/http/modules/ngx_http_uwsgi_module.obj \
1385 src/http/modules/ngx_http_uwsgi_module.c
1386
1387
1388objs/src/http/modules/ngx_http_scgi_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1389 src/http/modules/ngx_http_scgi_module.c
1390 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1391 -Foobjs/src/http/modules/ngx_http_scgi_module.obj \
1392 src/http/modules/ngx_http_scgi_module.c
1393
1394
1395objs/src/http/modules/ngx_http_grpc_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1396 src/http/modules/ngx_http_grpc_module.c
1397 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1398 -Foobjs/src/http/modules/ngx_http_grpc_module.obj \
1399 src/http/modules/ngx_http_grpc_module.c
1400
1401
1402objs/src/http/modules/ngx_http_memcached_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1403 src/http/modules/ngx_http_memcached_module.c
1404 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1405 -Foobjs/src/http/modules/ngx_http_memcached_module.obj \
1406 src/http/modules/ngx_http_memcached_module.c
1407
1408
1409objs/src/http/modules/ngx_http_empty_gif_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1410 src/http/modules/ngx_http_empty_gif_module.c
1411 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1412 -Foobjs/src/http/modules/ngx_http_empty_gif_module.obj \
1413 src/http/modules/ngx_http_empty_gif_module.c
1414
1415
1416objs/src/http/modules/ngx_http_browser_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1417 src/http/modules/ngx_http_browser_module.c
1418 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1419 -Foobjs/src/http/modules/ngx_http_browser_module.obj \
1420 src/http/modules/ngx_http_browser_module.c
1421
1422
1423objs/src/http/modules/ngx_http_secure_link_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1424 src/http/modules/ngx_http_secure_link_module.c
1425 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1426 -Foobjs/src/http/modules/ngx_http_secure_link_module.obj \
1427 src/http/modules/ngx_http_secure_link_module.c
1428
1429
1430objs/src/http/modules/ngx_http_flv_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1431 src/http/modules/ngx_http_flv_module.c
1432 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1433 -Foobjs/src/http/modules/ngx_http_flv_module.obj \
1434 src/http/modules/ngx_http_flv_module.c
1435
1436
1437objs/src/http/modules/ngx_http_mp4_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1438 src/http/modules/ngx_http_mp4_module.c
1439 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1440 -Foobjs/src/http/modules/ngx_http_mp4_module.obj \
1441 src/http/modules/ngx_http_mp4_module.c
1442
1443
1444objs/src/http/modules/ngx_http_upstream_hash_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1445 src/http/modules/ngx_http_upstream_hash_module.c
1446 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1447 -Foobjs/src/http/modules/ngx_http_upstream_hash_module.obj \
1448 src/http/modules/ngx_http_upstream_hash_module.c
1449
1450
1451objs/src/http/modules/ngx_http_upstream_ip_hash_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1452 src/http/modules/ngx_http_upstream_ip_hash_module.c
1453 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1454 -Foobjs/src/http/modules/ngx_http_upstream_ip_hash_module.obj \
1455 src/http/modules/ngx_http_upstream_ip_hash_module.c
1456
1457
1458objs/src/http/modules/ngx_http_upstream_least_conn_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1459 src/http/modules/ngx_http_upstream_least_conn_module.c
1460 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1461 -Foobjs/src/http/modules/ngx_http_upstream_least_conn_module.obj \
1462 src/http/modules/ngx_http_upstream_least_conn_module.c
1463
1464
1465objs/src/http/modules/ngx_http_upstream_random_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1466 src/http/modules/ngx_http_upstream_random_module.c
1467 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1468 -Foobjs/src/http/modules/ngx_http_upstream_random_module.obj \
1469 src/http/modules/ngx_http_upstream_random_module.c
1470
1471
1472objs/src/http/modules/ngx_http_upstream_keepalive_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1473 src/http/modules/ngx_http_upstream_keepalive_module.c
1474 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1475 -Foobjs/src/http/modules/ngx_http_upstream_keepalive_module.obj \
1476 src/http/modules/ngx_http_upstream_keepalive_module.c
1477
1478
1479objs/src/http/modules/ngx_http_upstream_zone_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1480 src/http/modules/ngx_http_upstream_zone_module.c
1481 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1482 -Foobjs/src/http/modules/ngx_http_upstream_zone_module.obj \
1483 src/http/modules/ngx_http_upstream_zone_module.c
1484
1485
1486objs/src/http/modules/ngx_http_stub_status_module.obj: $(CORE_DEPS) $(HTTP_DEPS) \
1487 src/http/modules/ngx_http_stub_status_module.c
1488 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1489 -Foobjs/src/http/modules/ngx_http_stub_status_module.obj \
1490 src/http/modules/ngx_http_stub_status_module.c
1491
1492
1493objs/src/mail/ngx_mail.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1494 src/mail/ngx_mail.c
1495 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1496 -Foobjs/src/mail/ngx_mail.obj \
1497 src/mail/ngx_mail.c
1498
1499
1500objs/src/mail/ngx_mail_core_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1501 src/mail/ngx_mail_core_module.c
1502 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1503 -Foobjs/src/mail/ngx_mail_core_module.obj \
1504 src/mail/ngx_mail_core_module.c
1505
1506
1507objs/src/mail/ngx_mail_handler.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1508 src/mail/ngx_mail_handler.c
1509 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1510 -Foobjs/src/mail/ngx_mail_handler.obj \
1511 src/mail/ngx_mail_handler.c
1512
1513
1514objs/src/mail/ngx_mail_parse.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1515 src/mail/ngx_mail_parse.c
1516 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1517 -Foobjs/src/mail/ngx_mail_parse.obj \
1518 src/mail/ngx_mail_parse.c
1519
1520
1521objs/src/mail/ngx_mail_ssl_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1522 src/mail/ngx_mail_ssl_module.c
1523 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1524 -Foobjs/src/mail/ngx_mail_ssl_module.obj \
1525 src/mail/ngx_mail_ssl_module.c
1526
1527
1528objs/src/mail/ngx_mail_pop3_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1529 src/mail/ngx_mail_pop3_module.c
1530 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1531 -Foobjs/src/mail/ngx_mail_pop3_module.obj \
1532 src/mail/ngx_mail_pop3_module.c
1533
1534
1535objs/src/mail/ngx_mail_pop3_handler.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1536 src/mail/ngx_mail_pop3_handler.c
1537 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1538 -Foobjs/src/mail/ngx_mail_pop3_handler.obj \
1539 src/mail/ngx_mail_pop3_handler.c
1540
1541
1542objs/src/mail/ngx_mail_imap_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1543 src/mail/ngx_mail_imap_module.c
1544 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1545 -Foobjs/src/mail/ngx_mail_imap_module.obj \
1546 src/mail/ngx_mail_imap_module.c
1547
1548
1549objs/src/mail/ngx_mail_imap_handler.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1550 src/mail/ngx_mail_imap_handler.c
1551 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1552 -Foobjs/src/mail/ngx_mail_imap_handler.obj \
1553 src/mail/ngx_mail_imap_handler.c
1554
1555
1556objs/src/mail/ngx_mail_smtp_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1557 src/mail/ngx_mail_smtp_module.c
1558 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1559 -Foobjs/src/mail/ngx_mail_smtp_module.obj \
1560 src/mail/ngx_mail_smtp_module.c
1561
1562
1563objs/src/mail/ngx_mail_smtp_handler.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1564 src/mail/ngx_mail_smtp_handler.c
1565 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1566 -Foobjs/src/mail/ngx_mail_smtp_handler.obj \
1567 src/mail/ngx_mail_smtp_handler.c
1568
1569
1570objs/src/mail/ngx_mail_auth_http_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1571 src/mail/ngx_mail_auth_http_module.c
1572 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1573 -Foobjs/src/mail/ngx_mail_auth_http_module.obj \
1574 src/mail/ngx_mail_auth_http_module.c
1575
1576
1577objs/src/mail/ngx_mail_proxy_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1578 src/mail/ngx_mail_proxy_module.c
1579 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1580 -Foobjs/src/mail/ngx_mail_proxy_module.obj \
1581 src/mail/ngx_mail_proxy_module.c
1582
1583
1584objs/src/mail/ngx_mail_realip_module.obj: $(CORE_DEPS) $(MAIL_DEPS) \
1585 src/mail/ngx_mail_realip_module.c
1586 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1587 -Foobjs/src/mail/ngx_mail_realip_module.obj \
1588 src/mail/ngx_mail_realip_module.c
1589
1590
1591objs/src/stream/ngx_stream.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1592 src/stream/ngx_stream.c
1593 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1594 -Foobjs/src/stream/ngx_stream.obj \
1595 src/stream/ngx_stream.c
1596
1597
1598objs/src/stream/ngx_stream_variables.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1599 src/stream/ngx_stream_variables.c
1600 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1601 -Foobjs/src/stream/ngx_stream_variables.obj \
1602 src/stream/ngx_stream_variables.c
1603
1604
1605objs/src/stream/ngx_stream_script.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1606 src/stream/ngx_stream_script.c
1607 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1608 -Foobjs/src/stream/ngx_stream_script.obj \
1609 src/stream/ngx_stream_script.c
1610
1611
1612objs/src/stream/ngx_stream_handler.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1613 src/stream/ngx_stream_handler.c
1614 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1615 -Foobjs/src/stream/ngx_stream_handler.obj \
1616 src/stream/ngx_stream_handler.c
1617
1618
1619objs/src/stream/ngx_stream_core_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1620 src/stream/ngx_stream_core_module.c
1621 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1622 -Foobjs/src/stream/ngx_stream_core_module.obj \
1623 src/stream/ngx_stream_core_module.c
1624
1625
1626objs/src/stream/ngx_stream_log_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1627 src/stream/ngx_stream_log_module.c
1628 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1629 -Foobjs/src/stream/ngx_stream_log_module.obj \
1630 src/stream/ngx_stream_log_module.c
1631
1632
1633objs/src/stream/ngx_stream_proxy_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1634 src/stream/ngx_stream_proxy_module.c
1635 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1636 -Foobjs/src/stream/ngx_stream_proxy_module.obj \
1637 src/stream/ngx_stream_proxy_module.c
1638
1639
1640objs/src/stream/ngx_stream_upstream.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1641 src/stream/ngx_stream_upstream.c
1642 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1643 -Foobjs/src/stream/ngx_stream_upstream.obj \
1644 src/stream/ngx_stream_upstream.c
1645
1646
1647objs/src/stream/ngx_stream_upstream_round_robin.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1648 src/stream/ngx_stream_upstream_round_robin.c
1649 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1650 -Foobjs/src/stream/ngx_stream_upstream_round_robin.obj \
1651 src/stream/ngx_stream_upstream_round_robin.c
1652
1653
1654objs/src/stream/ngx_stream_write_filter_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1655 src/stream/ngx_stream_write_filter_module.c
1656 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1657 -Foobjs/src/stream/ngx_stream_write_filter_module.obj \
1658 src/stream/ngx_stream_write_filter_module.c
1659
1660
1661objs/src/stream/ngx_stream_ssl_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1662 src/stream/ngx_stream_ssl_module.c
1663 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1664 -Foobjs/src/stream/ngx_stream_ssl_module.obj \
1665 src/stream/ngx_stream_ssl_module.c
1666
1667
1668objs/src/stream/ngx_stream_limit_conn_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1669 src/stream/ngx_stream_limit_conn_module.c
1670 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1671 -Foobjs/src/stream/ngx_stream_limit_conn_module.obj \
1672 src/stream/ngx_stream_limit_conn_module.c
1673
1674
1675objs/src/stream/ngx_stream_access_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1676 src/stream/ngx_stream_access_module.c
1677 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1678 -Foobjs/src/stream/ngx_stream_access_module.obj \
1679 src/stream/ngx_stream_access_module.c
1680
1681
1682objs/src/stream/ngx_stream_geo_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1683 src/stream/ngx_stream_geo_module.c
1684 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1685 -Foobjs/src/stream/ngx_stream_geo_module.obj \
1686 src/stream/ngx_stream_geo_module.c
1687
1688
1689objs/src/stream/ngx_stream_map_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1690 src/stream/ngx_stream_map_module.c
1691 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1692 -Foobjs/src/stream/ngx_stream_map_module.obj \
1693 src/stream/ngx_stream_map_module.c
1694
1695
1696objs/src/stream/ngx_stream_split_clients_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1697 src/stream/ngx_stream_split_clients_module.c
1698 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1699 -Foobjs/src/stream/ngx_stream_split_clients_module.obj \
1700 src/stream/ngx_stream_split_clients_module.c
1701
1702
1703objs/src/stream/ngx_stream_return_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1704 src/stream/ngx_stream_return_module.c
1705 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1706 -Foobjs/src/stream/ngx_stream_return_module.obj \
1707 src/stream/ngx_stream_return_module.c
1708
1709
1710objs/src/stream/ngx_stream_set_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1711 src/stream/ngx_stream_set_module.c
1712 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1713 -Foobjs/src/stream/ngx_stream_set_module.obj \
1714 src/stream/ngx_stream_set_module.c
1715
1716
1717objs/src/stream/ngx_stream_upstream_hash_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1718 src/stream/ngx_stream_upstream_hash_module.c
1719 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1720 -Foobjs/src/stream/ngx_stream_upstream_hash_module.obj \
1721 src/stream/ngx_stream_upstream_hash_module.c
1722
1723
1724objs/src/stream/ngx_stream_upstream_least_conn_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1725 src/stream/ngx_stream_upstream_least_conn_module.c
1726 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1727 -Foobjs/src/stream/ngx_stream_upstream_least_conn_module.obj \
1728 src/stream/ngx_stream_upstream_least_conn_module.c
1729
1730
1731objs/src/stream/ngx_stream_upstream_random_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1732 src/stream/ngx_stream_upstream_random_module.c
1733 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1734 -Foobjs/src/stream/ngx_stream_upstream_random_module.obj \
1735 src/stream/ngx_stream_upstream_random_module.c
1736
1737
1738objs/src/stream/ngx_stream_upstream_zone_module.obj: $(CORE_DEPS) $(STREAM_DEPS) \
1739 src/stream/ngx_stream_upstream_zone_module.c
1740 $(CC) -c $(CFLAGS) -Yungx_config.h -Fpobjs/ngx_config.pch $(ALL_INCS) \
1741 -Foobjs/src/stream/ngx_stream_upstream_zone_module.obj \
1742 src/stream/ngx_stream_upstream_zone_module.c
1743
1744
1745objs/nginx.res: src/os/win32/nginx.ico
1746 rc -foobjs/nginx.res $(CORE_INCS) src/os/win32/nginx.rc
1747
1748
1749objs/ngx_config.pch: src/core/ngx_config.h src/os/win32/ngx_win32_config.h objs/ngx_auto_config.h
1750 $(CC) $(CFLAGS) -Ycngx_config.h -Fpobjs/ngx_config.pch -c $(ALL_INCS) -Foobjs/ngx_pch.obj objs/ngx_pch.c
1751
1752
1753PCRE_CFLAGS = -O2 -Ob1 -Oi -Gs -MT
1754PCRE_FLAGS = -DHAVE_CONFIG_H -DPCRE2_STATIC -DPCRE2_CODE_UNIT_WIDTH=8 \
1755 -DHAVE_MEMMOVE
1756
1757PCRE_SRCS = pcre2_auto_possess.c \
1758 pcre2_chartables.c \
1759 pcre2_compile.c \
1760 pcre2_config.c \
1761 pcre2_context.c \
1762 pcre2_dfa_match.c \
1763 pcre2_error.c \
1764 pcre2_jit_compile.c \
1765 pcre2_maketables.c \
1766 pcre2_match.c \
1767 pcre2_match_data.c \
1768 pcre2_newline.c \
1769 pcre2_ord2utf.c \
1770 pcre2_pattern_info.c \
1771 pcre2_string_utils.c \
1772 pcre2_study.c \
1773 pcre2_substitute.c \
1774 pcre2_substring.c \
1775 pcre2_tables.c \
1776 pcre2_ucd.c \
1777 pcre2_valid_utf.c \
1778 pcre2_xclass.c \
1779 pcre2_convert.c \
1780 pcre2_extuni.c \
1781 pcre2_find_bracket.c \
1782 pcre2_script_run.c \
1783 pcre2_serialize.c
1784PCRE_OBJS = pcre2_auto_possess.obj \
1785 pcre2_chartables.obj \
1786 pcre2_compile.obj \
1787 pcre2_config.obj \
1788 pcre2_context.obj \
1789 pcre2_dfa_match.obj \
1790 pcre2_error.obj \
1791 pcre2_jit_compile.obj \
1792 pcre2_maketables.obj \
1793 pcre2_match.obj \
1794 pcre2_match_data.obj \
1795 pcre2_newline.obj \
1796 pcre2_ord2utf.obj \
1797 pcre2_pattern_info.obj \
1798 pcre2_string_utils.obj \
1799 pcre2_study.obj \
1800 pcre2_substitute.obj \
1801 pcre2_substring.obj \
1802 pcre2_tables.obj \
1803 pcre2_ucd.obj \
1804 pcre2_valid_utf.obj \
1805 pcre2_xclass.obj \
1806 pcre2_convert.obj \
1807 pcre2_extuni.obj \
1808 pcre2_find_bracket.obj \
1809 pcre2_script_run.obj \
1810 pcre2_serialize.obj
1811
1812objs/lib/pcre2-10.40/src/pcre2.h:
1813 cd objs/lib/pcre2-10.40/src \
1814 && copy /y config.h.generic config.h \
1815 && copy /y pcre2.h.generic pcre2.h \
1816 && copy /y pcre2_chartables.c.dist pcre2_chartables.c
1817
1818objs/lib/pcre2-10.40/src/pcre2-8.lib: objs/lib/pcre2-10.40/src/pcre2.h objs/Makefile
1819 cd objs/lib/pcre2-10.40/src \
1820 && cl -nologo -c $(PCRE_CFLAGS) -I . $(PCRE_FLAGS) $(PCRE_SRCS) \
1821 && link -lib -out:pcre2-8.lib -verbose:lib $(PCRE_OBJS)
1822
1823
1824objs/lib/openssl/openssl/include/openssl/ssl.h: objs/Makefile
1825 $(MAKE) -f auto/lib/openssl/makefile.msvc OPENSSL="objs/lib/openssl" OPENSSL_OPT=""
1826
1827
1828objs/lib/zlib-1.2.13/zlib.lib: objs/Makefile
1829 $(MAKE) -f auto/lib/zlib/makefile.msvc CPU_OPT="" LIBC=-MT ZLIB="objs/lib/zlib-1.2.13"
1830
1831
1832manpage: objs/nginx.8
1833
1834objs/nginx.8: docs/man/nginx.8 objs/ngx_auto_config.h
1835 sed -e "s|%%PREFIX%%||" \
1836 -e "s|%%PID_PATH%%|/logs/nginx.pid|" \
1837 -e "s|%%CONF_PATH%%|/conf/nginx.conf|" \
1838 -e "s|%%ERROR_LOG_PATH%%|/logs/error.log|" \
1839 < docs/man/nginx.8 > $@
1840
1841install: build
1842 test -d '$(DESTDIR)' || mkdir -p '$(DESTDIR)'
1843
1844 test -d '$(DESTDIR)/' \
1845 || mkdir -p '$(DESTDIR)/'
1846 test ! -f '$(DESTDIR)/nginx.exe' \
1847 || mv '$(DESTDIR)/nginx.exe' \
1848 '$(DESTDIR)/nginx.exe.old'
1849 cp objs/nginx '$(DESTDIR)/nginx.exe'
1850
1851 test -d '$(DESTDIR)/conf' \
1852 || mkdir -p '$(DESTDIR)/conf'
1853
1854 cp conf/koi-win '$(DESTDIR)/conf'
1855 cp conf/koi-utf '$(DESTDIR)/conf'
1856 cp conf/win-utf '$(DESTDIR)/conf'
1857
1858 test -f '$(DESTDIR)/conf/mime.types' \
1859 || cp conf/mime.types '$(DESTDIR)/conf'
1860 cp conf/mime.types '$(DESTDIR)/conf/mime.types.default'
1861
1862 test -f '$(DESTDIR)/conf/fastcgi_params' \
1863 || cp conf/fastcgi_params '$(DESTDIR)/conf'
1864 cp conf/fastcgi_params \
1865 '$(DESTDIR)/conf/fastcgi_params.default'
1866
1867 test -f '$(DESTDIR)/conf/fastcgi.conf' \
1868 || cp conf/fastcgi.conf '$(DESTDIR)/conf'
1869 cp conf/fastcgi.conf '$(DESTDIR)/conf/fastcgi.conf.default'
1870
1871 test -f '$(DESTDIR)/conf/uwsgi_params' \
1872 || cp conf/uwsgi_params '$(DESTDIR)/conf'
1873 cp conf/uwsgi_params \
1874 '$(DESTDIR)/conf/uwsgi_params.default'
1875
1876 test -f '$(DESTDIR)/conf/scgi_params' \
1877 || cp conf/scgi_params '$(DESTDIR)/conf'
1878 cp conf/scgi_params \
1879 '$(DESTDIR)/conf/scgi_params.default'
1880
1881 test -f '$(DESTDIR)/conf/nginx.conf' \
1882 || cp conf/nginx.conf '$(DESTDIR)/conf/nginx.conf'
1883 cp conf/nginx.conf '$(DESTDIR)/conf/nginx.conf.default'
1884
1885 test -d '$(DESTDIR)/logs' \
1886 || mkdir -p '$(DESTDIR)/logs'
1887
1888 test -d '$(DESTDIR)/logs' \
1889 || mkdir -p '$(DESTDIR)/logs'
1890
1891 test -d '$(DESTDIR)/html' \
1892 || cp -R docs/html '$(DESTDIR)'
1893
1894 test -d '$(DESTDIR)/logs' \
1895 || mkdir -p '$(DESTDIR)/logs'