| 2 |
|
|
| 3 |
dist_doc_DATA = \ |
dist_doc_DATA = \ |
| 4 |
doc/pcre.txt \ |
doc/pcre.txt \ |
| 5 |
|
doc/pcre-config.txt \ |
| 6 |
doc/pcregrep.txt \ |
doc/pcregrep.txt \ |
| 7 |
doc/pcretest.txt \ |
doc/pcretest.txt \ |
| 8 |
AUTHORS \ |
AUTHORS \ |
| 15 |
dist_html_DATA = \ |
dist_html_DATA = \ |
| 16 |
doc/html/index.html \ |
doc/html/index.html \ |
| 17 |
doc/html/pcre.html \ |
doc/html/pcre.html \ |
| 18 |
|
doc/html/pcre-config.html \ |
| 19 |
doc/html/pcre_compile.html \ |
doc/html/pcre_compile.html \ |
| 20 |
doc/html/pcre_compile2.html \ |
doc/html/pcre_compile2.html \ |
| 21 |
doc/html/pcre_config.html \ |
doc/html/pcre_config.html \ |
| 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 |
| 66 |
# TESTS is for binary unit tests, check_SCRIPTS for script-based tests |
# TESTS is for binary unit tests, check_SCRIPTS for script-based tests |
| 67 |
TESTS = |
TESTS = |
| 68 |
check_SCRIPTS = |
check_SCRIPTS = |
| 69 |
noinst_SCRIPTS = |
dist_noinst_SCRIPTS = |
| 70 |
|
|
| 71 |
# Some of the binaries we make are to be installed, and others are |
# Some of the binaries we make are to be installed, and others are |
| 72 |
# (non-user-visible) helper programs needed to build libpcre. |
# (non-user-visible) helper programs needed to build libpcre. |
| 98 |
# These files are to do with building for Virtual Pascal |
# These files are to do with building for Virtual Pascal |
| 99 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 100 |
makevp.bat \ |
makevp.bat \ |
| 101 |
makevp-compile.txt \ |
makevp_c.txt \ |
| 102 |
makevp-linklib.txt \ |
makevp_l.txt \ |
| 103 |
pcregexp.pas |
pcregexp.pas |
| 104 |
|
|
| 105 |
# These files are usable versions of pcre.h and config.h that are distributed |
# These files are usable versions of pcre.h and config.h that are distributed |
| 109 |
pcre.h.generic \ |
pcre.h.generic \ |
| 110 |
config.h.generic |
config.h.generic |
| 111 |
|
|
| 112 |
|
pcre.h.generic: configure.ac |
| 113 |
|
rm -f $@ |
| 114 |
|
cp -p pcre.h $@ |
| 115 |
|
|
| 116 |
|
MAINTAINERCLEANFILES += pcre.h.generic |
| 117 |
|
|
| 118 |
# These are the header files we'll install. We do not distribute pcre.h because |
# These are the header files we'll install. We do not distribute pcre.h because |
| 119 |
# it is generated from pcre.h.in. |
# it is generated from pcre.h.in. |
| 120 |
nodist_include_HEADERS = \ |
nodist_include_HEADERS = \ |
| 152 |
./dftables$(EXEEXT) $@ |
./dftables$(EXEEXT) $@ |
| 153 |
else |
else |
| 154 |
|
|
| 155 |
pcre_chartables.c: pcre_chartables.c.dist |
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist |
| 156 |
cp pcre_chartables.c.dist pcre_chartables.c |
rm -f $@ |
| 157 |
|
$(LN_S) $(srcdir)/pcre_chartables.c.dist $@ |
| 158 |
|
|
| 159 |
endif # WITH_REBUILD_CHARTABLES |
endif # WITH_REBUILD_CHARTABLES |
| 160 |
|
|
| 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 |
| 241 |
# ways. We install these test binaries in case folks find it helpful. |
# ways. We install these test binaries in case folks find it helpful. |
| 242 |
|
|
| 243 |
TESTS += RunTest |
TESTS += RunTest |
| 244 |
noinst_SCRIPTS += RunTest |
dist_noinst_SCRIPTS += RunTest |
| 245 |
EXTRA_DIST += RunTest.bat |
EXTRA_DIST += RunTest.bat |
| 246 |
bin_PROGRAMS += pcretest |
bin_PROGRAMS += pcretest |
| 247 |
pcretest_SOURCES = pcretest.c |
pcretest_SOURCES = pcretest.c |
| 248 |
pcretest_LDADD = libpcreposix.la |
pcretest_LDADD = libpcreposix.la |
| 249 |
|
|
| 250 |
TESTS += RunGrepTest |
TESTS += RunGrepTest |
| 251 |
noinst_SCRIPTS += RunGrepTest |
dist_noinst_SCRIPTS += RunGrepTest |
| 252 |
bin_PROGRAMS += pcregrep |
bin_PROGRAMS += pcregrep |
| 253 |
pcregrep_SOURCES = pcregrep.c |
pcregrep_SOURCES = pcregrep.c |
| 254 |
pcregrep_LDADD = libpcreposix.la |
pcregrep_LDADD = libpcreposix.la |
| 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 \ |
| 263 |
testdata/grepoutput8 \ |
testdata/grepoutput8 \ |
| 264 |
|
testdata/grepoutputN \ |
| 265 |
testdata/testinput1 \ |
testdata/testinput1 \ |
| 266 |
testdata/testinput2 \ |
testdata/testinput2 \ |
| 267 |
testdata/testinput3 \ |
testdata/testinput3 \ |
| 271 |
testdata/testinput7 \ |
testdata/testinput7 \ |
| 272 |
testdata/testinput8 \ |
testdata/testinput8 \ |
| 273 |
testdata/testinput9 \ |
testdata/testinput9 \ |
| 274 |
|
testdata/testinput10 \ |
| 275 |
testdata/testoutput1 \ |
testdata/testoutput1 \ |
| 276 |
testdata/testoutput2 \ |
testdata/testoutput2 \ |
| 277 |
testdata/testoutput3 \ |
testdata/testoutput3 \ |
| 281 |
testdata/testoutput7 \ |
testdata/testoutput7 \ |
| 282 |
testdata/testoutput8 \ |
testdata/testoutput8 \ |
| 283 |
testdata/testoutput9 \ |
testdata/testoutput9 \ |
| 284 |
|
testdata/testoutput10 \ |
| 285 |
|
testdata/wintestinput3 \ |
| 286 |
|
testdata/wintestoutput3 \ |
| 287 |
perltest.pl |
perltest.pl |
| 288 |
|
|
| 289 |
CLEANFILES += \ |
CLEANFILES += \ |
| 290 |
testsavedregex \ |
testsavedregex \ |
| 291 |
teststderr \ |
teststderr \ |
| 292 |
testtry |
testtry \ |
| 293 |
|
testNinput |
| 294 |
|
|
| 295 |
# PCRE demonstration program |
# PCRE demonstration program |
| 296 |
noinst_PROGRAMS += pcredemo |
noinst_PROGRAMS += pcredemo |
| 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 |
| 331 |
|
|
| 332 |
dist_man_MANS = \ |
dist_man_MANS = \ |
| 333 |
doc/pcre.3 \ |
doc/pcre.3 \ |
| 334 |
|
doc/pcre-config.1 \ |
| 335 |
doc/pcre_compile.3 \ |
doc/pcre_compile.3 \ |
| 336 |
doc/pcre_compile2.3 \ |
doc/pcre_compile2.3 \ |
| 337 |
doc/pcre_config.3 \ |
doc/pcre_config.3 \ |
| 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 \ |
| 382 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 383 |
config-cmake.h.in |
config-cmake.h.in |
| 384 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
| 385 |
## end Makefile.am |
## end Makefile.am |