| 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 |
perltest.pl |
perltest.pl |
| 286 |
|
|
| 287 |
CLEANFILES += \ |
CLEANFILES += \ |
| 288 |
testsavedregex \ |
testsavedregex \ |
| 289 |
teststderr \ |
teststderr \ |
| 290 |
testtry |
testtry \ |
| 291 |
|
testNinput |
| 292 |
|
|
| 293 |
# PCRE demonstration program |
# PCRE demonstration program |
| 294 |
noinst_PROGRAMS += pcredemo |
noinst_PROGRAMS += pcredemo |
| 309 |
|
|
| 310 |
dist_man_MANS = \ |
dist_man_MANS = \ |
| 311 |
doc/pcre.3 \ |
doc/pcre.3 \ |
| 312 |
|
doc/pcre-config.1 \ |
| 313 |
doc/pcre_compile.3 \ |
doc/pcre_compile.3 \ |
| 314 |
doc/pcre_compile2.3 \ |
doc/pcre_compile2.3 \ |
| 315 |
doc/pcre_config.3 \ |
doc/pcre_config.3 \ |
| 343 |
doc/pcreprecompile.3 \ |
doc/pcreprecompile.3 \ |
| 344 |
doc/pcresample.3 \ |
doc/pcresample.3 \ |
| 345 |
doc/pcrestack.3 \ |
doc/pcrestack.3 \ |
| 346 |
|
doc/pcresyntax.3 \ |
| 347 |
doc/pcretest.1 |
doc/pcretest.1 |
| 348 |
|
|
| 349 |
pcrecpp_man = doc/pcrecpp.3 |
pcrecpp_man = doc/pcrecpp.3 |
| 359 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 360 |
config-cmake.h.in |
config-cmake.h.in |
| 361 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
| 362 |
## end Makefile.am |
## end Makefile.am |