mirror of
https://github.com/nginx/nginx.git
synced 2024-12-03 04:39:00 +08:00
ea8828b99e
instead of single old 4.4 version
22 lines
411 B
Plaintext
22 lines
411 B
Plaintext
|
|
# Copyright (C) Igor Sysoev
|
|
|
|
|
|
CFLAGS = -O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT)
|
|
PCREFLAGS = -DHAVE_CONFIG_H -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
|
|
|
|
|
|
pcre.lib:
|
|
cd $(PCRE)
|
|
|
|
cl -nologo -c $(CFLAGS) -I . $(PCREFLAGS) pcre_*.c
|
|
|
|
link -lib -out:pcre.lib -verbose:lib pcre_*.obj
|
|
|
|
pcre.h:
|
|
cd $(PCRE)
|
|
|
|
copy /y pcre.h.generic pcre.h
|
|
copy /y config.h.generic config.h
|
|
copy /y pcre_chartables.c.dist pcre_chartables.c
|