nginx/auto/lib/pcre/makefile.msvc

19 lines
408 B
Plaintext
Raw Normal View History

2003-11-26 04:44:56 +08:00
2004-03-11 04:56:39 +08:00
CFLAGS = -O2 -Ob1 -Oi -Gs -MT $(CPU_OPT)
2003-11-26 04:44:56 +08:00
PCREFLAGS = -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
2004-03-10 03:47:07 +08:00
pcre.lib:
patch -o pcre.h pcre.in patch.pcre
patch -o config.h config.in patch.config
cl -Fedftables dftables.c
2003-11-26 04:44:56 +08:00
dftables > chartables.c
2004-03-10 03:47:07 +08:00
cl -nologo -c $(CFLAGS) $(PCREFLAGS) \
2003-11-26 04:44:56 +08:00
maketables.c get.c study.c pcre.c
2004-03-10 03:47:07 +08:00
link -lib -out:pcre.lib -verbose:lib \
2003-11-26 04:44:56 +08:00
maketables.obj get.obj study.obj pcre.obj