comparison auto/lib/pcre/makefile.msvc @ 195:8dee38ea9117

nginx-0.0.1-2003-11-25-23:44:56 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Nov 2003 20:44:56 +0000
parents
children 30310107dbc9
comparison
equal deleted inserted replaced
194:2357fa41738a 195:8dee38ea9117
1
2 CC = cl
3 CFLAGS = -O2 -Ob1 -Oi -Gs -MT
4 LINK = link
5
6 PCREFLAGS = -DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10
7
8
9 all:
10 $(CC) -Fedftables dftables.c
11
12 dftables > chartables.c
13
14 $(CC) -nologo -c $(CFLAGS) $(PCREFLAGS) \
15 maketables.c get.c study.c pcre.c
16
17 $(LINK) -lib -out:pcre.lib -verbose:lib \
18 maketables.obj get.obj study.obj pcre.obj