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 = \ |
77 |
# Additional files to bundle with the distribution. |
# Additional files to bundle with the distribution. |
78 |
EXTRA_DIST = |
EXTRA_DIST = |
79 |
|
|
80 |
|
# These files contain maintenance information |
81 |
|
EXTRA_DIST += \ |
82 |
|
doc/perltest.txt \ |
83 |
|
NON-UNIX-USE \ |
84 |
|
INSTALL |
85 |
|
|
86 |
|
# These files are used in the preparation of a release |
87 |
|
EXTRA_DIST += \ |
88 |
|
PrepareRelease \ |
89 |
|
CleanTxt \ |
90 |
|
Detrail \ |
91 |
|
132html \ |
92 |
|
Index.html |
93 |
|
|
94 |
# These files are to do with building for Virtual Pascal |
# These files are to do with building for Virtual Pascal |
95 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
96 |
makevp.bat \ |
makevp.bat \ |
97 |
!compile.txt \ |
!compile.txt \ |
98 |
!linklib.txt \ |
!linklib.txt \ |
99 |
pcregexp.pas |
pcregexp.pas |
100 |
|
|
101 |
|
# These files are usable versions of pcre.h and config.h that are distributed |
102 |
|
# for the benefit of people who are building PCRE manually, without the |
103 |
|
# Autotools support. |
104 |
|
EXTRA_DIST += \ |
105 |
|
pcre.h.generic \ |
106 |
|
config.h.generic |
107 |
|
|
108 |
# These are the header files we'll install. Note that while pcre.h is |
# These are the header files we'll install. We do not distribute pcre.h because |
109 |
# generated from pcre.h.in, we want to include it in the distribution so |
# it is generated from pcre.h.in. |
110 |
# that users building without Autotools support have an easier time of it. |
nodist_include_HEADERS = \ |
111 |
|
pcre.h |
112 |
include_HEADERS = \ |
include_HEADERS = \ |
|
pcre.h \ |
|
113 |
pcreposix.h |
pcreposix.h |
114 |
|
|
115 |
# 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 |
116 |
# distribute pcrecpparg.h nor pcre_stringpiece.h, as these are generated |
# do not distribute pcrecpparg.h or pcre_stringpiece.h, as these are generated |
117 |
# from corresponding .h.in files (which we do distribute). |
# from corresponding .h.in files (which we do distribute). |
118 |
if WITH_PCRE_CPP |
if WITH_PCRE_CPP |
119 |
nodist_include_HEADERS = \ |
nodist_include_HEADERS += \ |
120 |
pcrecpparg.h \ |
pcrecpparg.h \ |
121 |
pcre_stringpiece.h |
pcre_stringpiece.h |
122 |
include_HEADERS += \ |
include_HEADERS += \ |
160 |
ucp.h \ |
ucp.h \ |
161 |
ucpinternal.h \ |
ucpinternal.h \ |
162 |
ucptable.h |
ucptable.h |
163 |
|
|
164 |
## 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. |
165 |
nodist_libpcre_la_SOURCES = \ |
nodist_libpcre_la_SOURCES = \ |
166 |
pcre_chartables.c |
pcre_chartables.c |
167 |
|
|
168 |
# 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 |
169 |
# distributed. In an Autotools world, config.h is generated from config.h.in, |
# distributed. |
170 |
# but, like pcre.h, we want to include it in the distribution so that users |
EXTRA_DIST += pcre_printint.src |
|
# building without Autotools support have an easier time of it. |
|
|
EXTRA_DIST += pcre_printint.src config.h |
|
171 |
|
|
172 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
173 |
|
|