Welcome to mirror list, hosted at ThFree Co, Russian Federation.

makefile.msvc « pcre « lib « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31921240c5e2eb98815a0364801704ea429487ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

CFLAGS =	-O2 -Ob1 -Oi -Gs $(LIBC) $(CPU_OPT)
PCREFLAGS =	-DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10


pcre.lib:	pcre.h
	cl -Fedftables dftables.c

	dftables > chartables.c

	cl -nologo -c $(CFLAGS) $(PCREFLAGS)				\
		maketables.c get.c study.c pcre.c

	link -lib -out:pcre.lib -verbose:lib				\
		maketables.obj get.obj study.obj pcre.obj

pcre.h:
	patch -o pcre.h pcre.in patch.pcre.in
	patch -o config.h config.in patch.config.in