| 4 |
doc/pcre.txt \ |
doc/pcre.txt \ |
| 5 |
doc/pcregrep.txt \ |
doc/pcregrep.txt \ |
| 6 |
doc/pcretest.txt \ |
doc/pcretest.txt \ |
|
doc/perltest.txt \ |
|
| 7 |
AUTHORS \ |
AUTHORS \ |
| 8 |
COPYING \ |
COPYING \ |
| 9 |
ChangeLog \ |
ChangeLog \ |
|
INSTALL \ |
|
| 10 |
LICENCE \ |
LICENCE \ |
| 11 |
NEWS \ |
NEWS \ |
|
NON-UNIX-USE \ |
|
| 12 |
README |
README |
| 13 |
|
|
| 14 |
dist_html_DATA = \ |
dist_html_DATA = \ |
| 74 |
CLEANFILES = |
CLEANFILES = |
| 75 |
MAINTAINERCLEANFILES = |
MAINTAINERCLEANFILES = |
| 76 |
|
|
| 77 |
# Additional files to bundle with the distribution. |
# Additional files to bundle with the distribution, over and above what |
| 78 |
|
# the Autotools include by default. |
| 79 |
EXTRA_DIST = |
EXTRA_DIST = |
| 80 |
|
|
| 81 |
# These are the header files we'll install. Note that while pcre.h is |
# These files contain maintenance information |
| 82 |
# generated from pcre.h.in, we want to include it in the distribution so |
EXTRA_DIST += \ |
| 83 |
# that users building without Autotools support have an easier time of it. |
doc/perltest.txt \ |
| 84 |
|
NON-UNIX-USE \ |
| 85 |
|
HACKING |
| 86 |
|
|
| 87 |
|
# These files are used in the preparation of a release |
| 88 |
|
EXTRA_DIST += \ |
| 89 |
|
PrepareRelease \ |
| 90 |
|
CleanTxt \ |
| 91 |
|
Detrail \ |
| 92 |
|
132html \ |
| 93 |
|
doc/index.html.src |
| 94 |
|
|
| 95 |
|
# These files are to do with building for Virtual Pascal |
| 96 |
|
EXTRA_DIST += \ |
| 97 |
|
makevp.bat \ |
| 98 |
|
makevp-c.txt \ |
| 99 |
|
makevp-l.txt \ |
| 100 |
|
pcregexp.pas |
| 101 |
|
|
| 102 |
|
# These files are usable versions of pcre.h and config.h that are distributed |
| 103 |
|
# for the benefit of people who are building PCRE manually, without the |
| 104 |
|
# Autotools support. |
| 105 |
|
EXTRA_DIST += \ |
| 106 |
|
pcre.h.generic \ |
| 107 |
|
config.h.generic |
| 108 |
|
|
| 109 |
|
# These are the header files we'll install. We do not distribute pcre.h because |
| 110 |
|
# it is generated from pcre.h.in. |
| 111 |
|
nodist_include_HEADERS = \ |
| 112 |
|
pcre.h |
| 113 |
include_HEADERS = \ |
include_HEADERS = \ |
|
pcre.h \ |
|
| 114 |
pcreposix.h |
pcreposix.h |
| 115 |
|
|
| 116 |
# 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 |
| 117 |
# distribute pcrecpparg.h nor pcre_stringpiece.h, as these are generated |
# do not distribute pcrecpparg.h or pcre_stringpiece.h, as these are generated |
| 118 |
# from corresponding .h.in files (which we do distribute). |
# from corresponding .h.in files (which we do distribute). |
| 119 |
if WITH_PCRE_CPP |
if WITH_PCRE_CPP |
| 120 |
nodist_include_HEADERS = \ |
nodist_include_HEADERS += \ |
| 121 |
pcrecpparg.h \ |
pcrecpparg.h \ |
| 122 |
pcre_stringpiece.h |
pcre_stringpiece.h |
| 123 |
include_HEADERS += \ |
include_HEADERS += \ |
| 128 |
bin_SCRIPTS = pcre-config |
bin_SCRIPTS = pcre-config |
| 129 |
|
|
| 130 |
## --------------------------------------------------------------- |
## --------------------------------------------------------------- |
| 131 |
## Some helper programs used to compile libpcre. They aren't user-visible. |
## The dftables program is used to rebuild character tables before compiling |
| 132 |
|
## PCRE, if --enable-rebuild-chartables is specified. It is not a user-visible |
| 133 |
|
## program. The default (when --enable-rebuild-chartables is not specified) is |
| 134 |
|
## to copy a distributed set of tables that are defined for ASCII code. In this |
| 135 |
|
## case, dftables is not needed. |
| 136 |
|
|
| 137 |
|
if WITH_REBUILD_CHARTABLES |
| 138 |
|
|
| 139 |
noinst_PROGRAMS += dftables |
noinst_PROGRAMS += dftables |
| 140 |
dftables_SOURCES = dftables.c |
dftables_SOURCES = dftables.c |
| 141 |
|
|
| 142 |
pcre_chartables.c: dftables$(EXEEXT) |
pcre_chartables.c: dftables$(EXEEXT) |
| 143 |
./dftables$(EXEEXT) $@ |
./dftables$(EXEEXT) $@ |
| 144 |
|
else |
| 145 |
|
|
| 146 |
|
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist |
| 147 |
|
cp -f $(srcdir)/pcre_chartables.c.dist pcre_chartables.c |
| 148 |
|
|
| 149 |
|
endif # WITH_REBUILD_CHARTABLES |
| 150 |
|
|
| 151 |
|
|
| 152 |
## The main pcre library |
## The main pcre library |
| 153 |
lib_LTLIBRARIES += libpcre.la |
lib_LTLIBRARIES += libpcre.la |
| 175 |
ucp.h \ |
ucp.h \ |
| 176 |
ucpinternal.h \ |
ucpinternal.h \ |
| 177 |
ucptable.h |
ucptable.h |
| 178 |
|
|
| 179 |
## 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. |
| 180 |
nodist_libpcre_la_SOURCES = \ |
nodist_libpcre_la_SOURCES = \ |
| 181 |
pcre_chartables.c |
pcre_chartables.c |
| 182 |
|
|
| 183 |
# 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 |
| 184 |
# 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 |
| 185 |
# 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. |
| 186 |
# 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 |
|
| 187 |
|
|
| 188 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
| 189 |
|
|
| 249 |
testdata/greplist \ |
testdata/greplist \ |
| 250 |
testdata/grepoutput \ |
testdata/grepoutput \ |
| 251 |
testdata/grepoutput8 \ |
testdata/grepoutput8 \ |
| 252 |
|
testdata/grepoutputN \ |
| 253 |
testdata/testinput1 \ |
testdata/testinput1 \ |
| 254 |
testdata/testinput2 \ |
testdata/testinput2 \ |
| 255 |
testdata/testinput3 \ |
testdata/testinput3 \ |