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 \ |
65 |
# TESTS is for binary unit tests, check_SCRIPTS for script-based tests |
# TESTS is for binary unit tests, check_SCRIPTS for script-based tests |
66 |
TESTS = |
TESTS = |
67 |
check_SCRIPTS = |
check_SCRIPTS = |
68 |
noinst_SCRIPTS = |
dist_noinst_SCRIPTS = |
69 |
|
|
70 |
# 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 |
71 |
# (non-user-visible) helper programs needed to build libpcre. |
# (non-user-visible) helper programs needed to build libpcre. |
97 |
# These files are to do with building for Virtual Pascal |
# These files are to do with building for Virtual Pascal |
98 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
99 |
makevp.bat \ |
makevp.bat \ |
100 |
makevp-c.txt \ |
makevp_c.txt \ |
101 |
makevp-l.txt \ |
makevp_l.txt \ |
102 |
pcregexp.pas |
pcregexp.pas |
103 |
|
|
104 |
# 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 |
108 |
pcre.h.generic \ |
pcre.h.generic \ |
109 |
config.h.generic |
config.h.generic |
110 |
|
|
111 |
|
pcre.h.generic: configure.ac |
112 |
|
rm -f $@ |
113 |
|
cp -p pcre.h $@ |
114 |
|
|
115 |
|
MAINTAINERCLEANFILES += pcre.h.generic |
116 |
|
|
117 |
# 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 |
118 |
# it is generated from pcre.h.in. |
# it is generated from pcre.h.in. |
119 |
nodist_include_HEADERS = \ |
nodist_include_HEADERS = \ |
152 |
else |
else |
153 |
|
|
154 |
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist |
pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist |
155 |
cp -f $(srcdir)/pcre_chartables.c.dist pcre_chartables.c |
rm -f $@ |
156 |
|
$(LN_S) $(srcdir)/pcre_chartables.c.dist $@ |
157 |
|
|
158 |
endif # WITH_REBUILD_CHARTABLES |
endif # WITH_REBUILD_CHARTABLES |
159 |
|
|
239 |
# ways. We install these test binaries in case folks find it helpful. |
# ways. We install these test binaries in case folks find it helpful. |
240 |
|
|
241 |
TESTS += RunTest |
TESTS += RunTest |
242 |
noinst_SCRIPTS += RunTest |
dist_noinst_SCRIPTS += RunTest |
243 |
EXTRA_DIST += RunTest.bat |
EXTRA_DIST += RunTest.bat |
244 |
bin_PROGRAMS += pcretest |
bin_PROGRAMS += pcretest |
245 |
pcretest_SOURCES = pcretest.c |
pcretest_SOURCES = pcretest.c |
246 |
pcretest_LDADD = libpcreposix.la |
pcretest_LDADD = libpcreposix.la |
247 |
|
|
248 |
TESTS += RunGrepTest |
TESTS += RunGrepTest |
249 |
noinst_SCRIPTS += RunGrepTest |
dist_noinst_SCRIPTS += RunGrepTest |
250 |
bin_PROGRAMS += pcregrep |
bin_PROGRAMS += pcregrep |
251 |
pcregrep_SOURCES = pcregrep.c |
pcregrep_SOURCES = pcregrep.c |
252 |
pcregrep_LDADD = libpcreposix.la |
pcregrep_LDADD = libpcreposix.la |
268 |
testdata/testinput7 \ |
testdata/testinput7 \ |
269 |
testdata/testinput8 \ |
testdata/testinput8 \ |
270 |
testdata/testinput9 \ |
testdata/testinput9 \ |
271 |
|
testdata/testinput10 \ |
272 |
testdata/testoutput1 \ |
testdata/testoutput1 \ |
273 |
testdata/testoutput2 \ |
testdata/testoutput2 \ |
274 |
testdata/testoutput3 \ |
testdata/testoutput3 \ |
278 |
testdata/testoutput7 \ |
testdata/testoutput7 \ |
279 |
testdata/testoutput8 \ |
testdata/testoutput8 \ |
280 |
testdata/testoutput9 \ |
testdata/testoutput9 \ |
281 |
|
testdata/testoutput10 \ |
282 |
perltest.pl |
perltest.pl |
283 |
|
|
284 |
CLEANFILES += \ |
CLEANFILES += \ |
285 |
testsavedregex \ |
testsavedregex \ |
286 |
teststderr \ |
teststderr \ |
287 |
testtry |
testtry \ |
288 |
|
testNinput |
289 |
|
|
290 |
# PCRE demonstration program |
# PCRE demonstration program |
291 |
noinst_PROGRAMS += pcredemo |
noinst_PROGRAMS += pcredemo |
306 |
|
|
307 |
dist_man_MANS = \ |
dist_man_MANS = \ |
308 |
doc/pcre.3 \ |
doc/pcre.3 \ |
309 |
|
doc/pcre-config.1 \ |
310 |
doc/pcre_compile.3 \ |
doc/pcre_compile.3 \ |
311 |
doc/pcre_compile2.3 \ |
doc/pcre_compile2.3 \ |
312 |
doc/pcre_config.3 \ |
doc/pcre_config.3 \ |
355 |
CMakeLists.txt \ |
CMakeLists.txt \ |
356 |
config-cmake.h.in |
config-cmake.h.in |
357 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
358 |
## end Makefile.am |
## end Makefile.am |