| 74 |
CLEANFILES = |
CLEANFILES = |
| 75 |
MAINTAINERCLEANFILES = |
MAINTAINERCLEANFILES = |
| 76 |
|
|
| 77 |
# Additional files to bundle with the distribution, over and above what |
# Additional files to bundle with the distribution, over and above what |
| 78 |
# the Autotools include by default. |
# the Autotools include by default. |
| 79 |
EXTRA_DIST = |
EXTRA_DIST = |
| 80 |
|
|
| 82 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 83 |
doc/perltest.txt \ |
doc/perltest.txt \ |
| 84 |
NON-UNIX-USE \ |
NON-UNIX-USE \ |
| 85 |
HACKING |
HACKING |
| 86 |
|
|
| 87 |
# These files are used in the preparation of a release |
# These files are used in the preparation of a release |
| 88 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 95 |
# These files are to do with building for Virtual Pascal |
# These files are to do with building for Virtual Pascal |
| 96 |
EXTRA_DIST += \ |
EXTRA_DIST += \ |
| 97 |
makevp.bat \ |
makevp.bat \ |
| 98 |
makevp-compile.txt \ |
makevp_c.txt \ |
| 99 |
makevp-linklib.txt \ |
makevp_l.txt \ |
| 100 |
pcregexp.pas |
pcregexp.pas |
| 101 |
|
|
| 102 |
# 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 |
| 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 |
|
rm -f $@ |
| 148 |
|
$(LN_S) $(srcdir)/pcre_chartables.c.dist $@ |
| 149 |
|
|
| 150 |
|
endif # WITH_REBUILD_CHARTABLES |
| 151 |
|
|
| 152 |
|
|
| 153 |
## The main pcre library |
## The main pcre library |
| 154 |
lib_LTLIBRARIES += libpcre.la |
lib_LTLIBRARIES += libpcre.la |
| 182 |
pcre_chartables.c |
pcre_chartables.c |
| 183 |
|
|
| 184 |
# 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 |
| 185 |
# distributed. |
# distributed. The pcre_chartables.c.dist file is the default version of |
| 186 |
EXTRA_DIST += pcre_printint.src |
# pcre_chartables.c, used unless --enable-rebuild-chartables is specified. |
| 187 |
|
EXTRA_DIST += pcre_printint.src pcre_chartables.c.dist |
| 188 |
|
|
| 189 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
| 190 |
|
|
| 250 |
testdata/greplist \ |
testdata/greplist \ |
| 251 |
testdata/grepoutput \ |
testdata/grepoutput \ |
| 252 |
testdata/grepoutput8 \ |
testdata/grepoutput8 \ |
| 253 |
|
testdata/grepoutputN \ |
| 254 |
testdata/testinput1 \ |
testdata/testinput1 \ |
| 255 |
testdata/testinput2 \ |
testdata/testinput2 \ |
| 256 |
testdata/testinput3 \ |
testdata/testinput3 \ |
| 343 |
CMakeLists.txt \ |
CMakeLists.txt \ |
| 344 |
config-cmake.h.in |
config-cmake.h.in |
| 345 |
|
|
|
config-cmake.h.in: config.h.in |
|
|
sed 's/#undef/#cmakedefine/g' config.h.in >$@ |
|
|
|
|
|
MAINTAINERCLEANFILES += config-cmake.h.in |
|
|
|
|
| 346 |
## end Makefile.am |
## end Makefile.am |