view auto/lib/pcre/makefile.msvc @ 3110:c09bf4a53b79

do not pass incoming buf chain twice if data are ready, the bug was introduced in r3072
author Igor Sysoev <igor@sysoev.ru>
date Mon, 07 Sep 2009 12:10:07 +0000
parents 22c4c012c8c9
children d620f497c50f
line wrap: on
line source


# 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