| 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 |
| 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 += \ |
| 302 |
# A compatibility line, the old build system worked with 'make test' |
# A compatibility line, the old build system worked with 'make test' |
| 303 |
test: check ; |
test: check ; |
| 304 |
|
|
| 305 |
|
|
| 306 |
|
# A PCRE user submitted the following addition, saying that it "will allow |
| 307 |
|
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a |
| 308 |
|
# nice DLL for Windows use". (It is used by the pcre.dll target.) |
| 309 |
|
DLL_OBJS= pcre_compile.o pcre_config.o \ |
| 310 |
|
pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \ |
| 311 |
|
pcre_globals.o pcre_info.o pcre_maketables.o \ |
| 312 |
|
pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \ |
| 313 |
|
pcre_study.o pcre_tables.o pcre_try_flipped.o \ |
| 314 |
|
pcre_ucp_searchfuncs.o pcre_valid_utf8.o pcre_version.o \ |
| 315 |
|
pcre_chartables.o \ |
| 316 |
|
pcre_xclass.o |
| 317 |
|
|
| 318 |
|
# A PCRE user submitted the following addition, saying that it "will allow |
| 319 |
|
# anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a |
| 320 |
|
# nice DLL for Windows use". |
| 321 |
|
pcre.dll: $(DLL_OBJS) |
| 322 |
|
$(CC) -shared -o pcre.dll -Wl,"--strip-all" -Wl,"--export-all-symbols" $(DLL_OBJS) |
| 323 |
|
|
| 324 |
|
|
| 325 |
# We have .pc files for pkg-config users. |
# We have .pc files for pkg-config users. |
| 326 |
pkgconfigdir = $(libdir)/pkgconfig |
pkgconfigdir = $(libdir)/pkgconfig |
| 327 |
pkgconfig_DATA = libpcre.pc |
pkgconfig_DATA = libpcre.pc |
| 365 |
doc/pcreprecompile.3 \ |
doc/pcreprecompile.3 \ |
| 366 |
doc/pcresample.3 \ |
doc/pcresample.3 \ |
| 367 |
doc/pcrestack.3 \ |
doc/pcrestack.3 \ |
| 368 |
|
doc/pcresyntax.3 \ |
| 369 |
doc/pcretest.1 |
doc/pcretest.1 |
| 370 |
|
|
| 371 |
pcrecpp_man = doc/pcrecpp.3 |
pcrecpp_man = doc/pcrecpp.3 |
| 378 |
## CMake support |
## CMake support |
| 379 |
|
|
| 380 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 381 |
|
cmake/COPYING-CMAKE-SCRIPTS \ |
| 382 |
|
cmake/FindPackageHandleStandardArgs.cmake \ |
| 383 |
|
cmake/FindReadline.cmake \ |
| 384 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 385 |
config-cmake.h.in |
config-cmake.h.in |
| 386 |
|
|