1 |
## Process this file with automake to produce Makefile.in.
|
2 |
|
3 |
ACLOCAL_AMFLAGS = -I m4
|
4 |
|
5 |
dist_doc_DATA = \
|
6 |
doc/pcre.txt \
|
7 |
doc/pcre-config.txt \
|
8 |
doc/pcregrep.txt \
|
9 |
doc/pcretest.txt \
|
10 |
AUTHORS \
|
11 |
COPYING \
|
12 |
ChangeLog \
|
13 |
LICENCE \
|
14 |
NEWS \
|
15 |
README
|
16 |
|
17 |
dist_html_DATA = \
|
18 |
doc/html/index.html \
|
19 |
doc/html/pcre.html \
|
20 |
doc/html/pcre-config.html \
|
21 |
doc/html/pcre_assign_jit_stack.html \
|
22 |
doc/html/pcre_compile.html \
|
23 |
doc/html/pcre_compile2.html \
|
24 |
doc/html/pcre_config.html \
|
25 |
doc/html/pcre_copy_named_substring.html \
|
26 |
doc/html/pcre_copy_substring.html \
|
27 |
doc/html/pcre_dfa_exec.html \
|
28 |
doc/html/pcre_exec.html \
|
29 |
doc/html/pcre_free_study.html \
|
30 |
doc/html/pcre_free_substring.html \
|
31 |
doc/html/pcre_free_substring_list.html \
|
32 |
doc/html/pcre_fullinfo.html \
|
33 |
doc/html/pcre_get_named_substring.html \
|
34 |
doc/html/pcre_get_stringnumber.html \
|
35 |
doc/html/pcre_get_stringtable_entries.html \
|
36 |
doc/html/pcre_get_substring.html \
|
37 |
doc/html/pcre_get_substring_list.html \
|
38 |
doc/html/pcre_info.html \
|
39 |
doc/html/pcre_jit_stack_alloc.html \
|
40 |
doc/html/pcre_jit_stack_free.html \
|
41 |
doc/html/pcre_maketables.html \
|
42 |
doc/html/pcre_refcount.html \
|
43 |
doc/html/pcre_study.html \
|
44 |
doc/html/pcre_version.html \
|
45 |
doc/html/pcreapi.html \
|
46 |
doc/html/pcrebuild.html \
|
47 |
doc/html/pcrecallout.html \
|
48 |
doc/html/pcrecompat.html \
|
49 |
doc/html/pcredemo.html \
|
50 |
doc/html/pcregrep.html \
|
51 |
doc/html/pcrejit.html \
|
52 |
doc/html/pcrelimits.html \
|
53 |
doc/html/pcrematching.html \
|
54 |
doc/html/pcrepartial.html \
|
55 |
doc/html/pcrepattern.html \
|
56 |
doc/html/pcreperform.html \
|
57 |
doc/html/pcreposix.html \
|
58 |
doc/html/pcreprecompile.html \
|
59 |
doc/html/pcresample.html \
|
60 |
doc/html/pcrestack.html \
|
61 |
doc/html/pcresyntax.html \
|
62 |
doc/html/pcretest.html \
|
63 |
doc/html/pcreunicode.html
|
64 |
|
65 |
pcrecpp_html = doc/html/pcrecpp.html
|
66 |
dist_noinst_DATA = $(pcrecpp_html)
|
67 |
|
68 |
if WITH_PCRE_CPP
|
69 |
html_DATA = $(pcrecpp_html)
|
70 |
endif
|
71 |
|
72 |
# The Libtool libraries to install. We'll add to this later.
|
73 |
lib_LTLIBRARIES =
|
74 |
|
75 |
# Unit tests you want to run when people type 'make check'.
|
76 |
# TESTS is for binary unit tests, check_SCRIPTS for script-based tests
|
77 |
TESTS =
|
78 |
check_SCRIPTS =
|
79 |
dist_noinst_SCRIPTS =
|
80 |
|
81 |
# Some of the binaries we make are to be installed, and others are
|
82 |
# (non-user-visible) helper programs needed to build libpcre or libpcre16.
|
83 |
bin_PROGRAMS =
|
84 |
noinst_PROGRAMS =
|
85 |
|
86 |
# Additional files to delete on 'make clean' and 'make maintainer-clean'.
|
87 |
CLEANFILES =
|
88 |
MAINTAINERCLEANFILES =
|
89 |
|
90 |
# Additional files to bundle with the distribution, over and above what
|
91 |
# the Autotools include by default.
|
92 |
EXTRA_DIST =
|
93 |
|
94 |
# These files contain maintenance information
|
95 |
EXTRA_DIST += \
|
96 |
doc/perltest.txt \
|
97 |
NON-UNIX-USE \
|
98 |
HACKING
|
99 |
|
100 |
# These files are used in the preparation of a release
|
101 |
EXTRA_DIST += \
|
102 |
PrepareRelease \
|
103 |
CleanTxt \
|
104 |
Detrail \
|
105 |
132html \
|
106 |
doc/index.html.src
|
107 |
|
108 |
# These files are to do with building for Virtual Pascal
|
109 |
EXTRA_DIST += \
|
110 |
makevp.bat \
|
111 |
makevp_c.txt \
|
112 |
makevp_l.txt \
|
113 |
pcregexp.pas
|
114 |
|
115 |
# These files are usable versions of pcre.h and config.h that are distributed
|
116 |
# for the benefit of people who are building PCRE manually, without the
|
117 |
# Autotools support.
|
118 |
EXTRA_DIST += \
|
119 |
pcre.h.generic \
|
120 |
config.h.generic
|
121 |
|
122 |
pcre.h.generic: configure.ac
|
123 |
rm -f $@
|
124 |
cp -p pcre.h $@
|
125 |
|
126 |
MAINTAINERCLEANFILES += pcre.h.generic
|
127 |
|
128 |
# These are the header files we'll install. We do not distribute pcre.h because
|
129 |
# it is generated from pcre.h.in.
|
130 |
nodist_include_HEADERS = \
|
131 |
pcre.h
|
132 |
include_HEADERS = \
|
133 |
pcreposix.h
|
134 |
|
135 |
# These additional headers will be be installed if C++ support is enabled. We
|
136 |
# do not distribute pcrecpparg.h or pcre_stringpiece.h, as these are generated
|
137 |
# from corresponding .h.in files (which we do distribute).
|
138 |
if WITH_PCRE_CPP
|
139 |
nodist_include_HEADERS += \
|
140 |
pcrecpparg.h \
|
141 |
pcre_stringpiece.h
|
142 |
include_HEADERS += \
|
143 |
pcrecpp.h \
|
144 |
pcre_scanner.h
|
145 |
endif # WITH_PCRE_CPP
|
146 |
|
147 |
bin_SCRIPTS = pcre-config
|
148 |
|
149 |
## ---------------------------------------------------------------
|
150 |
## The dftables program is used to rebuild character tables before compiling
|
151 |
## PCRE, if --enable-rebuild-chartables is specified. It is not a user-visible
|
152 |
## program. The default (when --enable-rebuild-chartables is not specified) is
|
153 |
## to copy a distributed set of tables that are defined for ASCII code. In this
|
154 |
## case, dftables is not needed.
|
155 |
|
156 |
if WITH_REBUILD_CHARTABLES
|
157 |
|
158 |
noinst_PROGRAMS += dftables
|
159 |
dftables_SOURCES = dftables.c
|
160 |
|
161 |
pcre_chartables.c: dftables$(EXEEXT)
|
162 |
./dftables$(EXEEXT) $@
|
163 |
else
|
164 |
|
165 |
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist
|
166 |
rm -f $@
|
167 |
$(LN_S) $(srcdir)/pcre_chartables.c.dist $@
|
168 |
|
169 |
endif # WITH_REBUILD_CHARTABLES
|
170 |
|
171 |
|
172 |
## The main pcre library
|
173 |
|
174 |
# Build the 8 bit library if it is enabled.
|
175 |
if WITH_PCRE8
|
176 |
lib_LTLIBRARIES += libpcre.la
|
177 |
libpcre_la_SOURCES = \
|
178 |
pcre_compile.c \
|
179 |
pcre_config.c \
|
180 |
pcre_dfa_exec.c \
|
181 |
pcre_exec.c \
|
182 |
pcre_fullinfo.c \
|
183 |
pcre_get.c \
|
184 |
pcre_globals.c \
|
185 |
pcre_info.c \
|
186 |
pcre_internal.h \
|
187 |
pcre_jit_compile.c \
|
188 |
pcre_maketables.c \
|
189 |
pcre_newline.c \
|
190 |
pcre_ord2utf8.c \
|
191 |
pcre_refcount.c \
|
192 |
pcre_string_utils.c \
|
193 |
pcre_study.c \
|
194 |
pcre_tables.c \
|
195 |
pcre_try_flipped.c \
|
196 |
pcre_ucd.c \
|
197 |
pcre_valid_utf8.c \
|
198 |
pcre_version.c \
|
199 |
pcre_xclass.c \
|
200 |
ucp.h
|
201 |
|
202 |
## This file is generated as part of the building process, so don't distribute.
|
203 |
nodist_libpcre_la_SOURCES = \
|
204 |
pcre_chartables.c
|
205 |
|
206 |
endif # WITH_PCRE8
|
207 |
|
208 |
# Build the 16 bit library if it is enabled.
|
209 |
if WITH_PCRE16
|
210 |
lib_LTLIBRARIES += libpcre16.la
|
211 |
libpcre16_la_SOURCES = \
|
212 |
pcre16_chartables.c \
|
213 |
pcre16_compile.c \
|
214 |
pcre16_exec.c \
|
215 |
pcre16_jit_compile.c \
|
216 |
pcre16_newline.c \
|
217 |
pcre16_ord2utf16.c \
|
218 |
pcre16_string_utils.c \
|
219 |
pcre16_study.c \
|
220 |
pcre16_tables.c \
|
221 |
pcre16_try_flipped.c \
|
222 |
pcre16_utf16_utils.c \
|
223 |
pcre16_valid_utf16.c \
|
224 |
pcre16_xclass.c
|
225 |
|
226 |
## This file is generated as part of the building process, so don't distribute.
|
227 |
nodist_libpcre16_la_SOURCES = \
|
228 |
pcre_chartables.c
|
229 |
|
230 |
endif # WITH_PCRE16
|
231 |
|
232 |
# The pcre_printint.src file is #included by some source files, so it must be
|
233 |
# distributed. The pcre_chartables.c.dist file is the default version of
|
234 |
# pcre_chartables.c, used unless --enable-rebuild-chartables is specified.
|
235 |
EXTRA_DIST += pcre_printint.src pcre_chartables.c.dist
|
236 |
|
237 |
# The JIT compiler lives in a separate directory, but its files are #included
|
238 |
# when pcre_jit_compile.c is processed, so they must be distributed.
|
239 |
EXTRA_DIST += \
|
240 |
sljit/sljitConfig.h \
|
241 |
sljit/sljitConfigInternal.h \
|
242 |
sljit/sljitExecAllocator.c \
|
243 |
sljit/sljitLir.c \
|
244 |
sljit/sljitLir.h \
|
245 |
sljit/sljitNativeARM_Thumb2.c \
|
246 |
sljit/sljitNativeARM_v5.c \
|
247 |
sljit/sljitNativeMIPS_32.c \
|
248 |
sljit/sljitNativeMIPS_common.c \
|
249 |
sljit/sljitNativePPC_32.c \
|
250 |
sljit/sljitNativePPC_64.c \
|
251 |
sljit/sljitNativePPC_common.c \
|
252 |
sljit/sljitNativeX86_32.c \
|
253 |
sljit/sljitNativeX86_64.c \
|
254 |
sljit/sljitNativeX86_common.c \
|
255 |
sljit/sljitUtils.c
|
256 |
|
257 |
if WITH_PCRE8
|
258 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS)
|
259 |
endif # WITH_PCRE8
|
260 |
if WITH_PCRE16
|
261 |
libpcre16_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS)
|
262 |
endif # WITH_PCRE16
|
263 |
|
264 |
CLEANFILES += pcre_chartables.c
|
265 |
|
266 |
## If JIT support is enabled, arrange for the JIT test program to run.
|
267 |
if WITH_JIT
|
268 |
TESTS += pcre_jit_test
|
269 |
noinst_PROGRAMS += pcre_jit_test
|
270 |
pcre_jit_test_SOURCES = pcre_jit_test.c
|
271 |
pcre_jit_test_LDADD =
|
272 |
if WITH_PCRE8
|
273 |
pcre_jit_test_LDADD += libpcre.la
|
274 |
endif # WITH_PCRE8
|
275 |
if WITH_PCRE16
|
276 |
pcre_jit_test_LDADD += libpcre16.la
|
277 |
endif # WITH_PCRE16
|
278 |
endif # WITH_JIT
|
279 |
|
280 |
## A version of the main pcre library that has a posix re API.
|
281 |
if WITH_PCRE8
|
282 |
lib_LTLIBRARIES += libpcreposix.la
|
283 |
libpcreposix_la_SOURCES = \
|
284 |
pcreposix.c
|
285 |
libpcreposix_la_LDFLAGS = $(EXTRA_LIBPCREPOSIX_LDFLAGS)
|
286 |
libpcreposix_la_LIBADD = libpcre.la
|
287 |
endif # WITH_PCRE8
|
288 |
|
289 |
## There's a C++ library as well.
|
290 |
if WITH_PCRE_CPP
|
291 |
|
292 |
lib_LTLIBRARIES += libpcrecpp.la
|
293 |
libpcrecpp_la_SOURCES = \
|
294 |
pcrecpp_internal.h \
|
295 |
pcrecpp.cc \
|
296 |
pcre_scanner.cc \
|
297 |
pcre_stringpiece.cc
|
298 |
libpcrecpp_la_LDFLAGS = $(EXTRA_LIBPCRECPP_LDFLAGS)
|
299 |
libpcrecpp_la_LIBADD = libpcre.la
|
300 |
|
301 |
TESTS += pcrecpp_unittest
|
302 |
noinst_PROGRAMS += pcrecpp_unittest
|
303 |
pcrecpp_unittest_SOURCES = pcrecpp_unittest.cc
|
304 |
pcrecpp_unittest_LDADD = libpcrecpp.la
|
305 |
|
306 |
TESTS += pcre_scanner_unittest
|
307 |
noinst_PROGRAMS += pcre_scanner_unittest
|
308 |
pcre_scanner_unittest_SOURCES = pcre_scanner_unittest.cc
|
309 |
pcre_scanner_unittest_LDADD = libpcrecpp.la
|
310 |
|
311 |
TESTS += pcre_stringpiece_unittest
|
312 |
noinst_PROGRAMS += pcre_stringpiece_unittest
|
313 |
pcre_stringpiece_unittest_SOURCES = pcre_stringpiece_unittest.cc
|
314 |
pcre_stringpiece_unittest_LDADD = libpcrecpp.la
|
315 |
|
316 |
endif # WITH_PCRE_CPP
|
317 |
|
318 |
## The main unit tests
|
319 |
|
320 |
# Each unit test is a binary plus a script that runs that binary in various
|
321 |
# ways. We install these test binaries in case folks find it helpful.
|
322 |
|
323 |
TESTS += RunTest
|
324 |
dist_noinst_SCRIPTS += RunTest
|
325 |
EXTRA_DIST += RunTest.bat
|
326 |
bin_PROGRAMS += pcretest
|
327 |
pcretest_SOURCES = pcretest.c
|
328 |
pcretest_LDADD = $(LIBREADLINE)
|
329 |
if WITH_PCRE8
|
330 |
pcretest_LDADD += libpcreposix.la
|
331 |
endif # WITH_PCRE8
|
332 |
|
333 |
TESTS += RunGrepTest
|
334 |
dist_noinst_SCRIPTS += RunGrepTest
|
335 |
bin_PROGRAMS += pcregrep
|
336 |
pcregrep_SOURCES = pcregrep.c
|
337 |
pcregrep_LDADD = $(LIBZ) $(LIBBZ2)
|
338 |
if WITH_PCRE8
|
339 |
pcregrep_LDADD += libpcreposix.la
|
340 |
endif # WITH_PCRE8
|
341 |
|
342 |
EXTRA_DIST += \
|
343 |
testdata/grepinput \
|
344 |
testdata/grepinput3 \
|
345 |
testdata/grepinput8 \
|
346 |
testdata/grepinputv \
|
347 |
testdata/grepinputx \
|
348 |
testdata/greplist \
|
349 |
testdata/grepoutput \
|
350 |
testdata/grepoutput8 \
|
351 |
testdata/grepoutputN \
|
352 |
testdata/testinput1 \
|
353 |
testdata/testinput2 \
|
354 |
testdata/testinput3 \
|
355 |
testdata/testinput4 \
|
356 |
testdata/testinput5 \
|
357 |
testdata/testinput6 \
|
358 |
testdata/testinput7 \
|
359 |
testdata/testinput8 \
|
360 |
testdata/testinput9 \
|
361 |
testdata/testinput10 \
|
362 |
testdata/testinput11 \
|
363 |
testdata/testinput12 \
|
364 |
testdata/testinput13 \
|
365 |
testdata/testinput14 \
|
366 |
testdata/testinput15 \
|
367 |
testdata/testoutput1 \
|
368 |
testdata/testoutput2 \
|
369 |
testdata/testoutput3 \
|
370 |
testdata/testoutput4 \
|
371 |
testdata/testoutput5 \
|
372 |
testdata/testoutput6 \
|
373 |
testdata/testoutput7 \
|
374 |
testdata/testoutput8 \
|
375 |
testdata/testoutput9 \
|
376 |
testdata/testoutput10 \
|
377 |
testdata/testoutput11 \
|
378 |
testdata/testoutput12 \
|
379 |
testdata/testoutput13 \
|
380 |
testdata/testoutput14 \
|
381 |
testdata/testoutput15 \
|
382 |
testdata/wintestinput3 \
|
383 |
testdata/wintestoutput3 \
|
384 |
perltest.pl
|
385 |
|
386 |
CLEANFILES += \
|
387 |
testsavedregex \
|
388 |
teststderr \
|
389 |
testtry \
|
390 |
testNinput
|
391 |
|
392 |
|
393 |
# PCRE demonstration program. No longer built automatcally. The point is that
|
394 |
# the users should build it themselves. So just distribute the source.
|
395 |
# noinst_PROGRAMS += pcredemo
|
396 |
# pcredemo_SOURCES = pcredemo.c
|
397 |
# pcredemo_LDADD = libpcre.la
|
398 |
|
399 |
EXTRA_DIST += pcredemo.c
|
400 |
|
401 |
|
402 |
## Utility rules, documentation, etc.
|
403 |
|
404 |
# A compatibility line, the old build system worked with 'make test'
|
405 |
test: check ;
|
406 |
|
407 |
|
408 |
# A PCRE user submitted the following addition, saying that it "will allow
|
409 |
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a
|
410 |
# nice DLL for Windows use". (It is used by the pcre.dll target.)
|
411 |
DLL_OBJS= pcre_compile.o pcre_config.o \
|
412 |
pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \
|
413 |
pcre_globals.o pcre_info.o pcre_jit_compile.o pcre_maketables.o \
|
414 |
pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \
|
415 |
pcre_study.o pcre_tables.o pcre_try_flipped.o \
|
416 |
pcre_ucd.o pcre_valid_utf8.o pcre_version.o \
|
417 |
pcre_chartables.o \
|
418 |
pcre_xclass.o
|
419 |
|
420 |
# A PCRE user submitted the following addition, saying that it "will allow
|
421 |
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a
|
422 |
# nice DLL for Windows use".
|
423 |
pcre.dll: $(DLL_OBJS)
|
424 |
$(CC) -shared -o pcre.dll -Wl,"--strip-all" -Wl,"--export-all-symbols" $(DLL_OBJS)
|
425 |
|
426 |
|
427 |
# We have .pc files for pkg-config users.
|
428 |
pkgconfigdir = $(libdir)/pkgconfig
|
429 |
pkgconfig_DATA = libpcre.pc libpcreposix.pc
|
430 |
if WITH_PCRE16
|
431 |
pkgconfig_DATA += libpcre16.pc
|
432 |
endif
|
433 |
if WITH_PCRE_CPP
|
434 |
pkgconfig_DATA += libpcrecpp.pc
|
435 |
endif
|
436 |
|
437 |
dist_man_MANS = \
|
438 |
doc/pcre.3 \
|
439 |
doc/pcre-config.1 \
|
440 |
doc/pcre_assign_jit_stack.3 \
|
441 |
doc/pcre_compile.3 \
|
442 |
doc/pcre_compile2.3 \
|
443 |
doc/pcre_config.3 \
|
444 |
doc/pcre_copy_named_substring.3 \
|
445 |
doc/pcre_copy_substring.3 \
|
446 |
doc/pcre_dfa_exec.3 \
|
447 |
doc/pcre_exec.3 \
|
448 |
doc/pcre_free_study.3 \
|
449 |
doc/pcre_free_substring.3 \
|
450 |
doc/pcre_free_substring_list.3 \
|
451 |
doc/pcre_fullinfo.3 \
|
452 |
doc/pcre_get_named_substring.3 \
|
453 |
doc/pcre_get_stringnumber.3 \
|
454 |
doc/pcre_get_stringtable_entries.3 \
|
455 |
doc/pcre_get_substring.3 \
|
456 |
doc/pcre_get_substring_list.3 \
|
457 |
doc/pcre_info.3 \
|
458 |
doc/pcre_jit_stack_alloc.3 \
|
459 |
doc/pcre_jit_stack_free.3 \
|
460 |
doc/pcre_maketables.3 \
|
461 |
doc/pcre_refcount.3 \
|
462 |
doc/pcre_study.3 \
|
463 |
doc/pcre_version.3 \
|
464 |
doc/pcreapi.3 \
|
465 |
doc/pcrebuild.3 \
|
466 |
doc/pcrecallout.3 \
|
467 |
doc/pcrecompat.3 \
|
468 |
doc/pcregrep.1 \
|
469 |
doc/pcrejit.3 \
|
470 |
doc/pcrelimits.3 \
|
471 |
doc/pcrematching.3 \
|
472 |
doc/pcrepartial.3 \
|
473 |
doc/pcrepattern.3 \
|
474 |
doc/pcreperform.3 \
|
475 |
doc/pcreposix.3 \
|
476 |
doc/pcreprecompile.3 \
|
477 |
doc/pcresample.3 \
|
478 |
doc/pcrestack.3 \
|
479 |
doc/pcresyntax.3 \
|
480 |
doc/pcretest.1 \
|
481 |
doc/pcreunicode.3
|
482 |
|
483 |
pcrecpp_man = doc/pcrecpp.3
|
484 |
EXTRA_DIST += $(pcrecpp_man)
|
485 |
|
486 |
if WITH_PCRE_CPP
|
487 |
man_MANS = $(pcrecpp_man)
|
488 |
endif
|
489 |
|
490 |
## CMake support
|
491 |
|
492 |
EXTRA_DIST += \
|
493 |
cmake/COPYING-CMAKE-SCRIPTS \
|
494 |
cmake/FindPackageHandleStandardArgs.cmake \
|
495 |
cmake/FindReadline.cmake \
|
496 |
CMakeLists.txt \
|
497 |
config-cmake.h.in
|
498 |
|
499 |
## end Makefile.am
|