| 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 \ |
|
doc/perltest.txt \ |
|
| 8 |
AUTHORS \ |
AUTHORS \ |
| 9 |
COPYING \ |
COPYING \ |
| 10 |
ChangeLog \ |
ChangeLog \ |
|
INSTALL \ |
|
| 11 |
LICENCE \ |
LICENCE \ |
| 12 |
NEWS \ |
NEWS \ |
|
NON-UNIX-USE \ |
|
| 13 |
README |
README |
| 14 |
|
|
| 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. |
| 77 |
CLEANFILES = |
CLEANFILES = |
| 78 |
MAINTAINERCLEANFILES = |
MAINTAINERCLEANFILES = |
| 79 |
|
|
| 80 |
# Additional files to bundle with the distribution. |
# Additional files to bundle with the distribution, over and above what |
| 81 |
|
# the Autotools include by default. |
| 82 |
EXTRA_DIST = |
EXTRA_DIST = |
| 83 |
|
|
| 84 |
|
# These files contain maintenance information |
| 85 |
|
EXTRA_DIST += \ |
| 86 |
|
doc/perltest.txt \ |
| 87 |
|
NON-UNIX-USE \ |
| 88 |
|
HACKING |
| 89 |
|
|
| 90 |
|
# These files are used in the preparation of a release |
| 91 |
|
EXTRA_DIST += \ |
| 92 |
|
PrepareRelease \ |
| 93 |
|
CleanTxt \ |
| 94 |
|
Detrail \ |
| 95 |
|
132html \ |
| 96 |
|
doc/index.html.src |
| 97 |
|
|
| 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 |
!compile.txt \ |
makevp_c.txt \ |
| 102 |
!linklib.txt \ |
makevp_l.txt \ |
| 103 |
pcregexp.pas |
pcregexp.pas |
| 104 |
|
|
| 105 |
# These are the header files we'll install. Note that while pcre.h is |
# These files are usable versions of pcre.h and config.h that are distributed |
| 106 |
# generated from pcre.h.in, we want to include it in the distribution so |
# for the benefit of people who are building PCRE manually, without the |
| 107 |
# that users building without Autotools support have an easier time of it. |
# Autotools support. |
| 108 |
|
EXTRA_DIST += \ |
| 109 |
|
pcre.h.generic \ |
| 110 |
|
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 |
| 119 |
|
# it is generated from pcre.h.in. |
| 120 |
|
nodist_include_HEADERS = \ |
| 121 |
|
pcre.h |
| 122 |
include_HEADERS = \ |
include_HEADERS = \ |
|
pcre.h \ |
|
| 123 |
pcreposix.h |
pcreposix.h |
| 124 |
|
|
| 125 |
# These will be installed too, if C++ support is enabled. We don't |
# These additional headers will be be installed if C++ support is enabled. We |
| 126 |
# distribute pcrecpparg.h nor pcre_stringpiece.h, as these are generated |
# do not distribute pcrecpparg.h or pcre_stringpiece.h, as these are generated |
| 127 |
# from corresponding .h.in files (which we do distribute). |
# from corresponding .h.in files (which we do distribute). |
| 128 |
if WITH_PCRE_CPP |
if WITH_PCRE_CPP |
| 129 |
nodist_include_HEADERS = \ |
nodist_include_HEADERS += \ |
| 130 |
pcrecpparg.h \ |
pcrecpparg.h \ |
| 131 |
pcre_stringpiece.h |
pcre_stringpiece.h |
| 132 |
include_HEADERS += \ |
include_HEADERS += \ |
| 137 |
bin_SCRIPTS = pcre-config |
bin_SCRIPTS = pcre-config |
| 138 |
|
|
| 139 |
## --------------------------------------------------------------- |
## --------------------------------------------------------------- |
| 140 |
## Some helper programs used to compile libpcre. They aren't user-visible. |
## The dftables program is used to rebuild character tables before compiling |
| 141 |
|
## PCRE, if --enable-rebuild-chartables is specified. It is not a user-visible |
| 142 |
|
## program. The default (when --enable-rebuild-chartables is not specified) is |
| 143 |
|
## to copy a distributed set of tables that are defined for ASCII code. In this |
| 144 |
|
## case, dftables is not needed. |
| 145 |
|
|
| 146 |
|
if WITH_REBUILD_CHARTABLES |
| 147 |
|
|
| 148 |
noinst_PROGRAMS += dftables |
noinst_PROGRAMS += dftables |
| 149 |
dftables_SOURCES = dftables.c |
dftables_SOURCES = dftables.c |
| 150 |
|
|
| 151 |
pcre_chartables.c: dftables$(EXEEXT) |
pcre_chartables.c: dftables$(EXEEXT) |
| 152 |
./dftables$(EXEEXT) $@ |
./dftables$(EXEEXT) $@ |
| 153 |
|
else |
| 154 |
|
|
| 155 |
|
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist |
| 156 |
|
rm -f $@ |
| 157 |
|
$(LN_S) $(srcdir)/pcre_chartables.c.dist $@ |
| 158 |
|
|
| 159 |
|
endif # WITH_REBUILD_CHARTABLES |
| 160 |
|
|
| 161 |
|
|
| 162 |
## The main pcre library |
## The main pcre library |
| 163 |
lib_LTLIBRARIES += libpcre.la |
lib_LTLIBRARIES += libpcre.la |
| 185 |
ucp.h \ |
ucp.h \ |
| 186 |
ucpinternal.h \ |
ucpinternal.h \ |
| 187 |
ucptable.h |
ucptable.h |
| 188 |
|
|
| 189 |
## This file is generated as part of the building process, so don't distribute. |
## This file is generated as part of the building process, so don't distribute. |
| 190 |
nodist_libpcre_la_SOURCES = \ |
nodist_libpcre_la_SOURCES = \ |
| 191 |
pcre_chartables.c |
pcre_chartables.c |
| 192 |
|
|
| 193 |
# The pcre_printint.src file is #included by some source files, so it must be |
# The pcre_printint.src file is #included by some source files, so it must be |
| 194 |
# distributed. In an Autotools world, config.h is generated from config.h.in, |
# distributed. The pcre_chartables.c.dist file is the default version of |
| 195 |
# but, like pcre.h, we want to include it in the distribution so that users |
# pcre_chartables.c, used unless --enable-rebuild-chartables is specified. |
| 196 |
# building without Autotools support have an easier time of it. |
EXTRA_DIST += pcre_printint.src pcre_chartables.c.dist |
|
EXTRA_DIST += pcre_printint.src config.h |
|
| 197 |
|
|
| 198 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
| 199 |
|
|
| 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 |
| 311 |
|
|
| 312 |
dist_man_MANS = \ |
dist_man_MANS = \ |
| 313 |
doc/pcre.3 \ |
doc/pcre.3 \ |
| 314 |
|
doc/pcre-config.1 \ |
| 315 |
doc/pcre_compile.3 \ |
doc/pcre_compile.3 \ |
| 316 |
doc/pcre_compile2.3 \ |
doc/pcre_compile2.3 \ |
| 317 |
doc/pcre_config.3 \ |
doc/pcre_config.3 \ |
| 345 |
doc/pcreprecompile.3 \ |
doc/pcreprecompile.3 \ |
| 346 |
doc/pcresample.3 \ |
doc/pcresample.3 \ |
| 347 |
doc/pcrestack.3 \ |
doc/pcrestack.3 \ |
| 348 |
|
doc/pcresyntax.3 \ |
| 349 |
doc/pcretest.1 |
doc/pcretest.1 |
| 350 |
|
|
| 351 |
pcrecpp_man = doc/pcrecpp.3 |
pcrecpp_man = doc/pcrecpp.3 |
| 358 |
## CMake support |
## CMake support |
| 359 |
|
|
| 360 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 361 |
|
cmake \ |
| 362 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 363 |
config-cmake.h.in |
config-cmake.h.in |
| 364 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
| 365 |
## end Makefile.am |
## end Makefile.am |