| 174 |
pcre_globals.c \ |
pcre_globals.c \ |
| 175 |
pcre_info.c \ |
pcre_info.c \ |
| 176 |
pcre_internal.h \ |
pcre_internal.h \ |
| 177 |
|
pcre_jit_compile.c \ |
| 178 |
pcre_maketables.c \ |
pcre_maketables.c \ |
| 179 |
pcre_newline.c \ |
pcre_newline.c \ |
| 180 |
pcre_ord2utf8.c \ |
pcre_ord2utf8.c \ |
| 197 |
# pcre_chartables.c, used unless --enable-rebuild-chartables is specified. |
# pcre_chartables.c, used unless --enable-rebuild-chartables is specified. |
| 198 |
EXTRA_DIST += pcre_printint.src pcre_chartables.c.dist |
EXTRA_DIST += pcre_printint.src pcre_chartables.c.dist |
| 199 |
|
|
| 200 |
|
# The JIT compiler lives in a separate directory, but its files are #included |
| 201 |
|
# when pcre_jit_compile.c is processed, so they must be distributed. |
| 202 |
|
EXTRA_DIST += \ |
| 203 |
|
sljit/sljitConfig.h \ |
| 204 |
|
sljit/sljitConfigInternal.h \ |
| 205 |
|
sljit/sljitExecAllocator.c \ |
| 206 |
|
sljit/sljitLir.c \ |
| 207 |
|
sljit/sljitLir.h \ |
| 208 |
|
sljit/sljitNativeARM_Thumb2.c \ |
| 209 |
|
sljit/sljitNativeARM_v5.c \ |
| 210 |
|
sljit/sljitNativeMIPS_32.c \ |
| 211 |
|
sljit/sljitNativeMIPS_common.c \ |
| 212 |
|
sljit/sljitNativePPC_32.c \ |
| 213 |
|
sljit/sljitNativePPC_64.c \ |
| 214 |
|
sljit/sljitNativePPC_common.c \ |
| 215 |
|
sljit/sljitNativeX86_32.c \ |
| 216 |
|
sljit/sljitNativeX86_64.c \ |
| 217 |
|
sljit/sljitNativeX86_common.c \ |
| 218 |
|
sljit/sljitUtils.c |
| 219 |
|
|
| 220 |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS) |
| 221 |
|
|
| 222 |
CLEANFILES += pcre_chartables.c |
CLEANFILES += pcre_chartables.c |
| 223 |
|
|
| 224 |
|
## If JIT support is enabled, arrange for the JIT test program to run. |
| 225 |
|
if WITH_JIT |
| 226 |
|
TESTS += pcre_jit_test |
| 227 |
|
noinst_PROGRAMS += pcre_jit_test |
| 228 |
|
pcre_jit_test_SOURCES = pcre_jit_test.c |
| 229 |
|
pcre_jit_test_LDADD = libpcre.la |
| 230 |
|
endif # WITH_JIT |
| 231 |
|
|
| 232 |
## A version of the main pcre library that has a posix re API. |
## A version of the main pcre library that has a posix re API. |
| 233 |
lib_LTLIBRARIES += libpcreposix.la |
lib_LTLIBRARIES += libpcreposix.la |
| 234 |
libpcreposix_la_SOURCES = \ |
libpcreposix_la_SOURCES = \ |
| 350 |
# nice DLL for Windows use". (It is used by the pcre.dll target.) |
# nice DLL for Windows use". (It is used by the pcre.dll target.) |
| 351 |
DLL_OBJS= pcre_compile.o pcre_config.o \ |
DLL_OBJS= pcre_compile.o pcre_config.o \ |
| 352 |
pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \ |
pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \ |
| 353 |
pcre_globals.o pcre_info.o pcre_maketables.o \ |
pcre_globals.o pcre_info.o pcre_jit_compile.o pcre_maketables.o \ |
| 354 |
pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \ |
pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \ |
| 355 |
pcre_study.o pcre_tables.o pcre_try_flipped.o \ |
pcre_study.o pcre_tables.o pcre_try_flipped.o \ |
| 356 |
pcre_ucd.o pcre_valid_utf8.o pcre_version.o \ |
pcre_ucd.o pcre_valid_utf8.o pcre_version.o \ |