1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
# Makefile for zlib
# Copyright (C) 1995-1996 Jean-loup Gailly.
# For conditions of distribution and use, see copyright notice in zlib.h
# To compile and test, type:
# ./configure; make test
# The call of configure is optional if you don't have special requirements
# To install /usr/local/lib/libz.* and /usr/local/include/zlib.h, type:
# make install
# To install in $HOME instead of /usr/local, use:
# make install prefix=$HOME
# %ExternalCopyright%
ARFLAGS = rc
O = \
pcre_latin_1_table.o \
pcre_compile.o \
pcre_config.o \
pcre_dfa_exec.o \
pcre_exec.o \
pcre_fullinfo.o \
pcre_get.o \
pcre_globals.o \
pcre_info.o \
pcre_maketables.o \
pcre_newline.o \
pcre_ord2utf8.o \
pcre_refcount.o \
pcre_study.o \
pcre_tables.o \
pcre_try_flipped.o \
pcre_ucp_searchfuncs.o \
pcre_valid_utf8.o \
pcre_version.o \
pcre_xclass.o
OBJS = $(O:%=$(OBJDIR)/%)
GENINC = pcre_exec_loop_break_cases.inc
#### Begin OTP targets
include $(ERL_TOP)/make/target.mk
# On windows we need a separate zlib during debug build
ifeq ($(TARGET),win32)
ifeq ($(TYPE),debug)
CFLAGS = $(subst -O2, -g, @CFLAGS@ @DEFS@ @DEBUG_FLAGS@ @EMU_THR_DEFS@ -DERLANG_INTEGRATION)
else # debug
CFLAGS = @CFLAGS@ @DEFS@ @EMU_THR_DEFS@ -DERLANG_INTEGRATION
endif # debug
else # win32
ifeq ($(TYPE),debug)
TYPE_FLAGS = @DEBUG_CFLAGS@
else # debug
ifeq ($(TYPE),gcov)
TYPE_FLAGS = -O0 -fprofile-arcs -ftest-coverage
else # gcov
TYPE_FLAGS = -O3
endif # gcov
endif # debug
CFLAGS = $(TYPE_FLAGS) $(subst -O2,, @CFLAGS@) @DEFS@ @EMU_THR_DEFS@ -DERLANG_INTEGRATION
endif # win32
OBJDIR = $(ERL_TOP)/erts/emulator/pcre/obj/$(TARGET)/$(TYPE)
include $(ERL_TOP)/make/$(TARGET)/otp.mk
ifeq ($(TARGET), win32)
LIBRARY=$(OBJDIR)/epcre.lib
else
LIBRARY=$(OBJDIR)/libepcre.a
endif
all: $(LIBRARY)
# ----------------------------------------------------
# Release Target
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
release_spec: opt
tests release_tests:
docs release_docs release_docs_spec:
clean:
rm -f $(OBJS) $(OBJDIR)/libepcre.a
#### end OTP targets
ifeq ($(TARGET), win32)
$(LIBRARY): $(OBJS)
$(AR) -out:$@ $(OBJS)
else
$(LIBRARY): $(OBJS)
$(AR) $(ARFLAGS) $@ $(OBJS)
-@ ($(RANLIB) $@ || true) 2>/dev/null
endif
$(OBJDIR)/%.o: %.c
$(CC) -c $(CFLAGS) -o $@ $<
$(GENINC): pcre_exec.c
for x in `grep -n COST_CHK pcre_exec.c | grep -v 'COST_CHK(N)' | awk -F: '{print $$1}'`; \
do \
N=`expr $$x + 100`; \
echo "case $$N: goto L_LOOP_COUNT_$${x};"; \
done > $(GENINC)
table: ./gen_table
./gen_table pcre_latin_1_table.c
./gen_table: pcre_make_latin1_default.c make_latin1_table.c
$(CC) $(CFLAGS) -o gen_table pcre_make_latin1_default.c make_latin1_table.c
# DO NOT DELETE THIS LINE -- make depend depends on it.
$(OBJDIR)/pcre_chartables.o: pcre_chartables.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_compile.o: pcre_compile.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_config.o: pcre_config.c pcre_internal.h local_config.h pcre.h \
ucp.h
$(OBJDIR)/pcre_dfa_exec.o: pcre_dfa_exec.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_exec.o: pcre_exec.c pcre_internal.h local_config.h pcre.h ucp.h \
$(GENINC)
$(OBJDIR)/pcre_fullinfo.o: pcre_fullinfo.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_get.o: pcre_get.c pcre_internal.h local_config.h pcre.h ucp.h
$(OBJDIR)/pcre_globals.o: pcre_globals.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_info.o: pcre_info.c pcre_internal.h local_config.h pcre.h ucp.h
$(OBJDIR)/pcre_maketables.o: pcre_maketables.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_newline.o: pcre_newline.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_ord2utf8.o: pcre_ord2utf8.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_refcount.o: pcre_refcount.c pcre_internal.h local_config.h \
pcre.h ucp.h
$(OBJDIR)/pcre_study.o: pcre_study.c pcre_internal.h local_config.h pcre.h \
ucp.h
$(OBJDIR)/pcre_tables.o: pcre_tables.c pcre_internal.h local_config.h pcre.h \
ucp.h
$(OBJDIR)/pcre_try_flipped.o: pcre_try_flipped.c pcre_internal.h \
local_config.h pcre.h ucp.h
$(OBJDIR)/pcre_ucp_searchfuncs.o: pcre_ucp_searchfuncs.c pcre_internal.h \
local_config.h pcre.h ucp.h ucpinternal.h ucptable.h
$(OBJDIR)/pcre_valid_utf8.o: pcre_valid_utf8.c pcre_internal.h local_config.h \
pcre.h ucp.h
pcre_version.o: pcre_version.c pcre_internal.h local_config.h pcre.h \
ucp.h
$(OBJDIR)/pcre_xclass.o: pcre_xclass.c pcre_internal.h local_config.h pcre.h \
ucp.h
|