| 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. |
| 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 |
| 282 |
CLEANFILES += \ |
CLEANFILES += \ |
| 283 |
testsavedregex \ |
testsavedregex \ |
| 284 |
teststderr \ |
teststderr \ |
| 285 |
testtry |
testtry \ |
| 286 |
|
testNinput |
| 287 |
|
|
| 288 |
# PCRE demonstration program |
# PCRE demonstration program |
| 289 |
noinst_PROGRAMS += pcredemo |
noinst_PROGRAMS += pcredemo |
| 304 |
|
|
| 305 |
dist_man_MANS = \ |
dist_man_MANS = \ |
| 306 |
doc/pcre.3 \ |
doc/pcre.3 \ |
| 307 |
|
doc/pcre-config.1 \ |
| 308 |
doc/pcre_compile.3 \ |
doc/pcre_compile.3 \ |
| 309 |
doc/pcre_compile2.3 \ |
doc/pcre_compile2.3 \ |
| 310 |
doc/pcre_config.3 \ |
doc/pcre_config.3 \ |
| 353 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 354 |
config-cmake.h.in |
config-cmake.h.in |
| 355 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
| 356 |
## end Makefile.am |
## end Makefile.am |