49 |
doc/html/pcreprecompile.html \ |
doc/html/pcreprecompile.html \ |
50 |
doc/html/pcresample.html \ |
doc/html/pcresample.html \ |
51 |
doc/html/pcrestack.html \ |
doc/html/pcrestack.html \ |
52 |
|
doc/html/pcresyntax.html \ |
53 |
doc/html/pcretest.html |
doc/html/pcretest.html |
54 |
|
|
55 |
pcrecpp_html = doc/html/pcrecpp.html |
pcrecpp_html = doc/html/pcrecpp.html |
211 |
|
|
212 |
lib_LTLIBRARIES += libpcrecpp.la |
lib_LTLIBRARIES += libpcrecpp.la |
213 |
libpcrecpp_la_SOURCES = \ |
libpcrecpp_la_SOURCES = \ |
214 |
|
pcrecpp_internal.h \ |
215 |
pcrecpp.cc \ |
pcrecpp.cc \ |
216 |
pcre_scanner.cc \ |
pcre_scanner.cc \ |
217 |
pcre_stringpiece.cc |
pcre_stringpiece.cc |
256 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
257 |
testdata/grepinput \ |
testdata/grepinput \ |
258 |
testdata/grepinput8 \ |
testdata/grepinput8 \ |
259 |
|
testdata/grepinputv \ |
260 |
testdata/grepinputx \ |
testdata/grepinputx \ |
261 |
testdata/greplist \ |
testdata/greplist \ |
262 |
testdata/grepoutput \ |
testdata/grepoutput \ |
282 |
testdata/testoutput8 \ |
testdata/testoutput8 \ |
283 |
testdata/testoutput9 \ |
testdata/testoutput9 \ |
284 |
testdata/testoutput10 \ |
testdata/testoutput10 \ |
285 |
|
testdata/wintestinput3 \ |
286 |
|
testdata/wintestoutput3 \ |
287 |
perltest.pl |
perltest.pl |
288 |
|
|
289 |
CLEANFILES += \ |
CLEANFILES += \ |
292 |
testtry \ |
testtry \ |
293 |
testNinput |
testNinput |
294 |
|
|
295 |
# PCRE demonstration program |
|
296 |
noinst_PROGRAMS += pcredemo |
# PCRE demonstration program. No longer built automatcally. The point is that |
297 |
pcredemo_SOURCES = pcredemo.c |
# the users should build it themselves. So just distribute the source. |
298 |
pcredemo_LDADD = libpcre.la |
# noinst_PROGRAMS += pcredemo |
299 |
|
# pcredemo_SOURCES = pcredemo.c |
300 |
|
# pcredemo_LDADD = libpcre.la |
301 |
|
|
302 |
|
EXTRA_DIST += pcredemo.c |
303 |
|
|
304 |
|
|
305 |
## Utility rules, documentation, etc. |
## Utility rules, documentation, etc. |
306 |
|
|
307 |
# A compatibility line, the old build system worked with 'make test' |
# A compatibility line, the old build system worked with 'make test' |
308 |
test: check ; |
test: check ; |
309 |
|
|
310 |
|
|
311 |
|
# A PCRE user submitted the following addition, saying that it "will allow |
312 |
|
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a |
313 |
|
# nice DLL for Windows use". (It is used by the pcre.dll target.) |
314 |
|
DLL_OBJS= pcre_compile.o pcre_config.o \ |
315 |
|
pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \ |
316 |
|
pcre_globals.o pcre_info.o pcre_maketables.o \ |
317 |
|
pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \ |
318 |
|
pcre_study.o pcre_tables.o pcre_try_flipped.o \ |
319 |
|
pcre_ucp_searchfuncs.o pcre_valid_utf8.o pcre_version.o \ |
320 |
|
pcre_chartables.o \ |
321 |
|
pcre_xclass.o |
322 |
|
|
323 |
|
# A PCRE user submitted the following addition, saying that it "will allow |
324 |
|
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a |
325 |
|
# nice DLL for Windows use". |
326 |
|
pcre.dll: $(DLL_OBJS) |
327 |
|
$(CC) -shared -o pcre.dll -Wl,"--strip-all" -Wl,"--export-all-symbols" $(DLL_OBJS) |
328 |
|
|
329 |
|
|
330 |
# We have .pc files for pkg-config users. |
# We have .pc files for pkg-config users. |
331 |
pkgconfigdir = $(libdir)/pkgconfig |
pkgconfigdir = $(libdir)/pkgconfig |
332 |
pkgconfig_DATA = libpcre.pc |
pkgconfig_DATA = libpcre.pc |
370 |
doc/pcreprecompile.3 \ |
doc/pcreprecompile.3 \ |
371 |
doc/pcresample.3 \ |
doc/pcresample.3 \ |
372 |
doc/pcrestack.3 \ |
doc/pcrestack.3 \ |
373 |
|
doc/pcresyntax.3 \ |
374 |
doc/pcretest.1 |
doc/pcretest.1 |
375 |
|
|
376 |
pcrecpp_man = doc/pcrecpp.3 |
pcrecpp_man = doc/pcrecpp.3 |
383 |
## CMake support |
## CMake support |
384 |
|
|
385 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
386 |
|
cmake/COPYING-CMAKE-SCRIPTS \ |
387 |
|
cmake/FindPackageHandleStandardArgs.cmake \ |
388 |
|
cmake/FindReadline.cmake \ |
389 |
CMakeLists.txt \ |
CMakeLists.txt \ |
390 |
config-cmake.h.in |
config-cmake.h.in |
391 |
|
|