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

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

# Copyright (C) Igor Sysoev


CFLAGS =	-q -O2 -tWM $(CPU_OPT)
PCREFLAGS =	-DPCRE_STATIC -DPOSIX_MALLOC_THRESHOLD=10


pcre.lib:	pcre.h
	bcc32 -q -edftables dftables.c

	dftables > chartables.c

	bcc32 -c $(CFLAGS) $(PCREFLAGS) maketables.c get.c study.c pcre.c

	tlib pcre.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