Annotation of embedaddon/pcre/Makefile.in, revision 1.1.1.4

1.1.1.4 ! misho       1: # Makefile.in generated by automake 1.13.2 from Makefile.am.
1.1       misho       2: # @configure_input@
                      3: 
1.1.1.4 ! misho       4: # Copyright (C) 1994-2013 Free Software Foundation, Inc.
        !             5: 
1.1       misho       6: # This Makefile.in is free software; the Free Software Foundation
                      7: # gives unlimited permission to copy and/or distribute it,
                      8: # with or without modifications, as long as this notice is preserved.
                      9: 
                     10: # This program is distributed in the hope that it will be useful,
                     11: # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
                     12: # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
                     13: # PARTICULAR PURPOSE.
                     14: 
                     15: @SET_MAKE@
                     16: 
                     17: 
                     18: 
                     19: 
                     20: 
                     21: VPATH = @srcdir@
1.1.1.4 ! misho      22: am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
        !            23: am__make_running_with_option = \
        !            24:   case $${target_option-} in \
        !            25:       ?) ;; \
        !            26:       *) echo "am__make_running_with_option: internal error: invalid" \
        !            27:               "target option '$${target_option-}' specified" >&2; \
        !            28:          exit 1;; \
        !            29:   esac; \
        !            30:   has_opt=no; \
        !            31:   sane_makeflags=$$MAKEFLAGS; \
        !            32:   if $(am__is_gnu_make); then \
        !            33:     sane_makeflags=$$MFLAGS; \
        !            34:   else \
        !            35:     case $$MAKEFLAGS in \
        !            36:       *\\[\ \  ]*) \
        !            37:         bs=\\; \
        !            38:         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
        !            39:           | sed "s/$$bs$$bs[$$bs $$bs  ]*//g"`;; \
        !            40:     esac; \
        !            41:   fi; \
        !            42:   skip_next=no; \
        !            43:   strip_trailopt () \
        !            44:   { \
        !            45:     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
        !            46:   }; \
        !            47:   for flg in $$sane_makeflags; do \
        !            48:     test $$skip_next = yes && { skip_next=no; continue; }; \
        !            49:     case $$flg in \
        !            50:       *=*|--*) continue;; \
        !            51:         -*I) strip_trailopt 'I'; skip_next=yes;; \
        !            52:       -*I?*) strip_trailopt 'I';; \
        !            53:         -*O) strip_trailopt 'O'; skip_next=yes;; \
        !            54:       -*O?*) strip_trailopt 'O';; \
        !            55:         -*l) strip_trailopt 'l'; skip_next=yes;; \
        !            56:       -*l?*) strip_trailopt 'l';; \
        !            57:       -[dEDm]) skip_next=yes;; \
        !            58:       -[JT]) skip_next=yes;; \
        !            59:     esac; \
        !            60:     case $$flg in \
        !            61:       *$$target_option*) has_opt=yes; break;; \
        !            62:     esac; \
        !            63:   done; \
        !            64:   test $$has_opt = yes
        !            65: am__make_dryrun = (target_option=n; $(am__make_running_with_option))
        !            66: am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
1.1       misho      67: pkgdatadir = $(datadir)/@PACKAGE@
                     68: pkgincludedir = $(includedir)/@PACKAGE@
                     69: pkglibdir = $(libdir)/@PACKAGE@
                     70: pkglibexecdir = $(libexecdir)/@PACKAGE@
                     71: am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
                     72: install_sh_DATA = $(install_sh) -c -m 644
                     73: install_sh_PROGRAM = $(install_sh) -c
                     74: install_sh_SCRIPT = $(install_sh) -c
                     75: INSTALL_HEADER = $(INSTALL_DATA)
                     76: transform = $(program_transform_name)
                     77: NORMAL_INSTALL = :
                     78: PRE_INSTALL = :
                     79: POST_INSTALL = :
                     80: NORMAL_UNINSTALL = :
                     81: PRE_UNINSTALL = :
                     82: POST_UNINSTALL = :
                     83: build_triplet = @build@
                     84: host_triplet = @host@
1.1.1.4 ! misho      85: TESTS = $(am__EXEEXT_3) $(am__EXEEXT_4) RunTest $(am__append_38)
1.1.1.2   misho      86: bin_PROGRAMS = pcretest$(EXEEXT) $(am__EXEEXT_1)
                     87: noinst_PROGRAMS = $(am__EXEEXT_2) $(am__EXEEXT_3) $(am__EXEEXT_4)
1.1       misho      88: 
                     89: # These additional headers will be be installed if C++ support is enabled. We
                     90: # do not distribute pcrecpparg.h or pcre_stringpiece.h, as these are generated
                     91: # from corresponding .h.in files (which we do distribute).
                     92: @WITH_PCRE_CPP_TRUE@am__append_1 = \
                     93: @WITH_PCRE_CPP_TRUE@  pcrecpparg.h \
                     94: @WITH_PCRE_CPP_TRUE@  pcre_stringpiece.h
                     95: 
                     96: @WITH_PCRE_CPP_TRUE@am__append_2 = \
                     97: @WITH_PCRE_CPP_TRUE@  pcrecpp.h \
                     98: @WITH_PCRE_CPP_TRUE@  pcre_scanner.h
                     99: 
                    100: @WITH_REBUILD_CHARTABLES_TRUE@am__append_3 = dftables
1.1.1.2   misho     101: 
                    102: # Build the 8 bit library if it is enabled.
                    103: @WITH_PCRE8_TRUE@am__append_4 = libpcre.la
                    104: 
                    105: # Build the 16 bit library if it is enabled.
                    106: @WITH_PCRE16_TRUE@am__append_5 = libpcre16.la
1.1.1.4 ! misho     107: 
        !           108: # Build the 32 bit library if it is enabled.
        !           109: @WITH_PCRE32_TRUE@am__append_6 = libpcre32.la
        !           110: @WITH_PCRE8_TRUE@@WITH_VALGRIND_TRUE@am__append_7 = $(VALGRIND_CFLAGS)
        !           111: @WITH_PCRE16_TRUE@@WITH_VALGRIND_TRUE@am__append_8 = $(VALGRIND_CFLAGS)
        !           112: @WITH_PCRE32_TRUE@@WITH_VALGRIND_TRUE@am__append_9 = $(VALGRIND_CFLAGS)
        !           113: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@am__append_10 = $(GCOV_CFLAGS)
        !           114: @WITH_GCOV_TRUE@@WITH_PCRE16_TRUE@am__append_11 = $(GCOV_CFLAGS)
        !           115: @WITH_GCOV_TRUE@@WITH_PCRE32_TRUE@am__append_12 = $(GCOV_CFLAGS)
        !           116: @WITH_JIT_TRUE@am__append_13 = pcre_jit_test
        !           117: @WITH_JIT_TRUE@am__append_14 = pcre_jit_test
        !           118: @WITH_JIT_TRUE@@WITH_PCRE8_TRUE@am__append_15 = libpcre.la
        !           119: @WITH_JIT_TRUE@@WITH_PCRE16_TRUE@am__append_16 = libpcre16.la
        !           120: @WITH_JIT_TRUE@@WITH_PCRE32_TRUE@am__append_17 = libpcre32.la
        !           121: @WITH_GCOV_TRUE@@WITH_JIT_TRUE@am__append_18 = $(GCOV_CFLAGS)
        !           122: @WITH_GCOV_TRUE@@WITH_JIT_TRUE@am__append_19 = $(GCOV_LIBS)
        !           123: @WITH_PCRE8_TRUE@am__append_20 = libpcreposix.la
        !           124: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@am__append_21 = $(GCOV_CFLAGS)
        !           125: @WITH_PCRE_CPP_TRUE@am__append_22 = libpcrecpp.la
        !           126: @WITH_PCRE_CPP_TRUE@am__append_23 = pcrecpp_unittest \
1.1       misho     127: @WITH_PCRE_CPP_TRUE@   pcre_scanner_unittest \
                    128: @WITH_PCRE_CPP_TRUE@   pcre_stringpiece_unittest
1.1.1.4 ! misho     129: @WITH_PCRE_CPP_TRUE@am__append_24 = pcrecpp_unittest \
1.1       misho     130: @WITH_PCRE_CPP_TRUE@   pcre_scanner_unittest \
                    131: @WITH_PCRE_CPP_TRUE@   pcre_stringpiece_unittest
1.1.1.4 ! misho     132: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@am__append_25 = $(GCOV_CXXFLAGS)
        !           133: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@am__append_26 = $(GCOV_LIBS)
        !           134: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@am__append_27 = $(GCOV_LIBS)
        !           135: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@am__append_28 = $(GCOV_LIBS)
        !           136: @WITH_PCRE8_TRUE@am__append_29 = pcre_printint.c
        !           137: @WITH_PCRE8_TRUE@am__append_30 = libpcre.la libpcreposix.la
        !           138: @WITH_PCRE16_TRUE@am__append_31 = pcre16_printint.c
        !           139: @WITH_PCRE16_TRUE@am__append_32 = libpcre16.la
        !           140: @WITH_PCRE32_TRUE@am__append_33 = pcre32_printint.c
        !           141: @WITH_PCRE32_TRUE@am__append_34 = libpcre32.la
        !           142: @WITH_VALGRIND_TRUE@am__append_35 = $(VALGRIND_CFLAGS)
        !           143: @WITH_GCOV_TRUE@am__append_36 = $(GCOV_CFLAGS)
        !           144: @WITH_GCOV_TRUE@am__append_37 = $(GCOV_LIBS)
        !           145: @WITH_PCRE8_TRUE@am__append_38 = RunGrepTest
        !           146: @WITH_PCRE8_TRUE@am__append_39 = RunGrepTest
        !           147: @WITH_PCRE8_TRUE@am__append_40 = pcregrep
        !           148: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@am__append_41 = $(GCOV_CFLAGS)
        !           149: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@am__append_42 = $(GCOV_LIBS)
        !           150: @WITH_PCRE16_TRUE@am__append_43 = libpcre16.pc
        !           151: @WITH_PCRE32_TRUE@am__append_44 = libpcre32.pc
        !           152: @WITH_PCRE_CPP_TRUE@am__append_45 = libpcrecpp.pc
1.1       misho     153: subdir = .
1.1.1.4 ! misho     154: DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog \
        !           155:        $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
        !           156:        $(top_srcdir)/configure $(am__configure_deps) \
        !           157:        $(srcdir)/config.h.in $(srcdir)/libpcre.pc.in \
        !           158:        $(srcdir)/libpcre16.pc.in $(srcdir)/libpcre32.pc.in \
        !           159:        $(srcdir)/libpcreposix.pc.in $(srcdir)/libpcrecpp.pc.in \
1.1       misho     160:        $(srcdir)/pcre-config.in $(srcdir)/pcre.h.in \
                    161:        $(srcdir)/pcre_stringpiece.h.in $(srcdir)/pcrecpparg.h.in \
1.1.1.4 ! misho     162:        $(am__dist_noinst_SCRIPTS_DIST) depcomp $(dist_man_MANS) \
        !           163:        $(dist_doc_DATA) $(dist_html_DATA) $(dist_noinst_DATA) \
        !           164:        $(am__include_HEADERS_DIST) test-driver COPYING ar-lib compile \
        !           165:        config.guess config.sub install-sh missing ltmain.sh
1.1       misho     166: ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1.1.1.4 ! misho     167: am__aclocal_m4_deps = $(top_srcdir)/m4/ax_pthread.m4 \
        !           168:        $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
        !           169:        $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
        !           170:        $(top_srcdir)/m4/lt~obsolete.m4 \
        !           171:        $(top_srcdir)/m4/pcre_visibility.m4 $(top_srcdir)/configure.ac
1.1       misho     172: am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
                    173:        $(ACLOCAL_M4)
                    174: am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
                    175:  configure.lineno config.status.lineno
                    176: mkinstalldirs = $(install_sh) -d
                    177: CONFIG_HEADER = config.h
1.1.1.4 ! misho     178: CONFIG_CLEAN_FILES = libpcre.pc libpcre16.pc libpcre32.pc \
        !           179:        libpcreposix.pc libpcrecpp.pc pcre-config pcre.h \
        !           180:        pcre_stringpiece.h pcrecpparg.h
1.1       misho     181: CONFIG_CLEAN_VPATH_FILES =
                    182: am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
                    183: am__vpath_adj = case $$p in \
                    184:     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
                    185:     *) f=$$p;; \
                    186:   esac;
                    187: am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
                    188: am__install_max = 40
                    189: am__nobase_strip_setup = \
                    190:   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
                    191: am__nobase_strip = \
                    192:   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
                    193: am__nobase_list = $(am__nobase_strip_setup); \
                    194:   for p in $$list; do echo "$$p $$p"; done | \
                    195:   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
                    196:   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
                    197:     if (++n[$$2] == $(am__install_max)) \
                    198:       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
                    199:     END { for (dir in files) print dir, files[dir] }'
                    200: am__base_list = \
                    201:   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
                    202:   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
1.1.1.4 ! misho     203: am__uninstall_files_from_dir = { \
        !           204:   test -z "$$files" \
        !           205:     || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
        !           206:     || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
        !           207:          $(am__cd) "$$dir" && rm -f $$files; }; \
        !           208:   }
1.1       misho     209: am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
                    210:        "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \
                    211:        "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(docdir)" \
                    212:        "$(DESTDIR)$(htmldir)" "$(DESTDIR)$(htmldir)" \
                    213:        "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)" \
                    214:        "$(DESTDIR)$(includedir)"
                    215: LTLIBRARIES = $(lib_LTLIBRARIES)
1.1.1.4 ! misho     216: libpcre_la_DEPENDENCIES =
1.1.1.2   misho     217: am__libpcre_la_SOURCES_DIST = pcre_byte_order.c pcre_compile.c \
                    218:        pcre_config.c pcre_dfa_exec.c pcre_exec.c pcre_fullinfo.c \
                    219:        pcre_get.c pcre_globals.c pcre_internal.h pcre_jit_compile.c \
                    220:        pcre_maketables.c pcre_newline.c pcre_ord2utf8.c \
                    221:        pcre_refcount.c pcre_string_utils.c pcre_study.c pcre_tables.c \
                    222:        pcre_ucd.c pcre_valid_utf8.c pcre_version.c pcre_xclass.c \
                    223:        ucp.h
1.1.1.4 ! misho     224: @WITH_PCRE8_TRUE@am_libpcre_la_OBJECTS =  \
        !           225: @WITH_PCRE8_TRUE@      libpcre_la-pcre_byte_order.lo \
        !           226: @WITH_PCRE8_TRUE@      libpcre_la-pcre_compile.lo \
        !           227: @WITH_PCRE8_TRUE@      libpcre_la-pcre_config.lo \
        !           228: @WITH_PCRE8_TRUE@      libpcre_la-pcre_dfa_exec.lo \
        !           229: @WITH_PCRE8_TRUE@      libpcre_la-pcre_exec.lo \
        !           230: @WITH_PCRE8_TRUE@      libpcre_la-pcre_fullinfo.lo \
        !           231: @WITH_PCRE8_TRUE@      libpcre_la-pcre_get.lo \
        !           232: @WITH_PCRE8_TRUE@      libpcre_la-pcre_globals.lo \
        !           233: @WITH_PCRE8_TRUE@      libpcre_la-pcre_jit_compile.lo \
        !           234: @WITH_PCRE8_TRUE@      libpcre_la-pcre_maketables.lo \
        !           235: @WITH_PCRE8_TRUE@      libpcre_la-pcre_newline.lo \
        !           236: @WITH_PCRE8_TRUE@      libpcre_la-pcre_ord2utf8.lo \
        !           237: @WITH_PCRE8_TRUE@      libpcre_la-pcre_refcount.lo \
        !           238: @WITH_PCRE8_TRUE@      libpcre_la-pcre_string_utils.lo \
        !           239: @WITH_PCRE8_TRUE@      libpcre_la-pcre_study.lo \
        !           240: @WITH_PCRE8_TRUE@      libpcre_la-pcre_tables.lo \
        !           241: @WITH_PCRE8_TRUE@      libpcre_la-pcre_ucd.lo \
        !           242: @WITH_PCRE8_TRUE@      libpcre_la-pcre_valid_utf8.lo \
        !           243: @WITH_PCRE8_TRUE@      libpcre_la-pcre_version.lo \
        !           244: @WITH_PCRE8_TRUE@      libpcre_la-pcre_xclass.lo
        !           245: @WITH_PCRE8_TRUE@nodist_libpcre_la_OBJECTS =  \
        !           246: @WITH_PCRE8_TRUE@      libpcre_la-pcre_chartables.lo
1.1       misho     247: libpcre_la_OBJECTS = $(am_libpcre_la_OBJECTS) \
                    248:        $(nodist_libpcre_la_OBJECTS)
1.1.1.4 ! misho     249: AM_V_lt = $(am__v_lt_@AM_V@)
        !           250: am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
1.1.1.2   misho     251: am__v_lt_0 = --silent
1.1.1.4 ! misho     252: am__v_lt_1 =
1.1.1.2   misho     253: libpcre_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1.1.1.4 ! misho     254:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libpcre_la_CFLAGS) \
        !           255:        $(CFLAGS) $(libpcre_la_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.2   misho     256: @WITH_PCRE8_TRUE@am_libpcre_la_rpath = -rpath $(libdir)
1.1.1.4 ! misho     257: libpcre16_la_DEPENDENCIES =
1.1.1.2   misho     258: am__libpcre16_la_SOURCES_DIST = pcre16_byte_order.c \
                    259:        pcre16_chartables.c pcre16_compile.c pcre16_config.c \
                    260:        pcre16_dfa_exec.c pcre16_exec.c pcre16_fullinfo.c pcre16_get.c \
                    261:        pcre16_globals.c pcre16_jit_compile.c pcre16_maketables.c \
                    262:        pcre16_newline.c pcre16_ord2utf16.c pcre16_refcount.c \
                    263:        pcre16_string_utils.c pcre16_study.c pcre16_tables.c \
                    264:        pcre16_ucd.c pcre16_utf16_utils.c pcre16_valid_utf16.c \
                    265:        pcre16_version.c pcre16_xclass.c
1.1.1.4 ! misho     266: @WITH_PCRE16_TRUE@am_libpcre16_la_OBJECTS =  \
        !           267: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_byte_order.lo \
        !           268: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_chartables.lo \
        !           269: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_compile.lo \
        !           270: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_config.lo \
        !           271: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_dfa_exec.lo \
        !           272: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_exec.lo \
        !           273: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_fullinfo.lo \
        !           274: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_get.lo \
        !           275: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_globals.lo \
        !           276: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_jit_compile.lo \
        !           277: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_maketables.lo \
        !           278: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_newline.lo \
        !           279: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_ord2utf16.lo \
        !           280: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_refcount.lo \
        !           281: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_string_utils.lo \
        !           282: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_study.lo \
        !           283: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_tables.lo \
        !           284: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_ucd.lo \
        !           285: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_utf16_utils.lo \
        !           286: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_valid_utf16.lo \
        !           287: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_version.lo \
        !           288: @WITH_PCRE16_TRUE@     libpcre16_la-pcre16_xclass.lo
        !           289: @WITH_PCRE16_TRUE@nodist_libpcre16_la_OBJECTS =  \
        !           290: @WITH_PCRE16_TRUE@     libpcre16_la-pcre_chartables.lo
1.1.1.2   misho     291: libpcre16_la_OBJECTS = $(am_libpcre16_la_OBJECTS) \
                    292:        $(nodist_libpcre16_la_OBJECTS)
                    293: libpcre16_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
1.1.1.4 ! misho     294:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libpcre16_la_CFLAGS) \
        !           295:        $(CFLAGS) $(libpcre16_la_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.2   misho     296: @WITH_PCRE16_TRUE@am_libpcre16_la_rpath = -rpath $(libdir)
1.1.1.4 ! misho     297: libpcre32_la_DEPENDENCIES =
        !           298: am__libpcre32_la_SOURCES_DIST = pcre32_byte_order.c \
        !           299:        pcre32_chartables.c pcre32_compile.c pcre32_config.c \
        !           300:        pcre32_dfa_exec.c pcre32_exec.c pcre32_fullinfo.c pcre32_get.c \
        !           301:        pcre32_globals.c pcre32_jit_compile.c pcre32_maketables.c \
        !           302:        pcre32_newline.c pcre32_ord2utf32.c pcre32_refcount.c \
        !           303:        pcre32_string_utils.c pcre32_study.c pcre32_tables.c \
        !           304:        pcre32_ucd.c pcre32_utf32_utils.c pcre32_valid_utf32.c \
        !           305:        pcre32_version.c pcre32_xclass.c
        !           306: @WITH_PCRE32_TRUE@am_libpcre32_la_OBJECTS =  \
        !           307: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_byte_order.lo \
        !           308: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_chartables.lo \
        !           309: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_compile.lo \
        !           310: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_config.lo \
        !           311: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_dfa_exec.lo \
        !           312: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_exec.lo \
        !           313: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_fullinfo.lo \
        !           314: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_get.lo \
        !           315: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_globals.lo \
        !           316: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_jit_compile.lo \
        !           317: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_maketables.lo \
        !           318: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_newline.lo \
        !           319: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_ord2utf32.lo \
        !           320: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_refcount.lo \
        !           321: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_string_utils.lo \
        !           322: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_study.lo \
        !           323: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_tables.lo \
        !           324: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_ucd.lo \
        !           325: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_utf32_utils.lo \
        !           326: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_valid_utf32.lo \
        !           327: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_version.lo \
        !           328: @WITH_PCRE32_TRUE@     libpcre32_la-pcre32_xclass.lo
        !           329: @WITH_PCRE32_TRUE@nodist_libpcre32_la_OBJECTS =  \
        !           330: @WITH_PCRE32_TRUE@     libpcre32_la-pcre_chartables.lo
        !           331: libpcre32_la_OBJECTS = $(am_libpcre32_la_OBJECTS) \
        !           332:        $(nodist_libpcre32_la_OBJECTS)
        !           333: libpcre32_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
        !           334:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(libpcre32_la_CFLAGS) \
        !           335:        $(CFLAGS) $(libpcre32_la_LDFLAGS) $(LDFLAGS) -o $@
        !           336: @WITH_PCRE32_TRUE@am_libpcre32_la_rpath = -rpath $(libdir)
1.1       misho     337: @WITH_PCRE_CPP_TRUE@libpcrecpp_la_DEPENDENCIES = libpcre.la
                    338: am__libpcrecpp_la_SOURCES_DIST = pcrecpp_internal.h pcrecpp.cc \
                    339:        pcre_scanner.cc pcre_stringpiece.cc
1.1.1.4 ! misho     340: @WITH_PCRE_CPP_TRUE@am_libpcrecpp_la_OBJECTS =  \
        !           341: @WITH_PCRE_CPP_TRUE@   libpcrecpp_la-pcrecpp.lo \
        !           342: @WITH_PCRE_CPP_TRUE@   libpcrecpp_la-pcre_scanner.lo \
        !           343: @WITH_PCRE_CPP_TRUE@   libpcrecpp_la-pcre_stringpiece.lo
1.1       misho     344: libpcrecpp_la_OBJECTS = $(am_libpcrecpp_la_OBJECTS)
1.1.1.2   misho     345: libpcrecpp_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
                    346:        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
1.1.1.4 ! misho     347:        $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) $(libpcrecpp_la_LDFLAGS) \
        !           348:        $(LDFLAGS) -o $@
1.1       misho     349: @WITH_PCRE_CPP_TRUE@am_libpcrecpp_la_rpath = -rpath $(libdir)
1.1.1.2   misho     350: @WITH_PCRE8_TRUE@libpcreposix_la_DEPENDENCIES = libpcre.la
                    351: am__libpcreposix_la_SOURCES_DIST = pcreposix.c
1.1.1.4 ! misho     352: @WITH_PCRE8_TRUE@am_libpcreposix_la_OBJECTS =  \
        !           353: @WITH_PCRE8_TRUE@      libpcreposix_la-pcreposix.lo
1.1       misho     354: libpcreposix_la_OBJECTS = $(am_libpcreposix_la_OBJECTS)
1.1.1.2   misho     355: libpcreposix_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
                    356:        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
1.1.1.4 ! misho     357:        $(libpcreposix_la_CFLAGS) $(CFLAGS) $(libpcreposix_la_LDFLAGS) \
        !           358:        $(LDFLAGS) -o $@
1.1.1.2   misho     359: @WITH_PCRE8_TRUE@am_libpcreposix_la_rpath = -rpath $(libdir)
                    360: @WITH_PCRE8_TRUE@am__EXEEXT_1 = pcregrep$(EXEEXT)
                    361: @WITH_REBUILD_CHARTABLES_TRUE@am__EXEEXT_2 = dftables$(EXEEXT)
                    362: @WITH_JIT_TRUE@am__EXEEXT_3 = pcre_jit_test$(EXEEXT)
                    363: @WITH_PCRE_CPP_TRUE@am__EXEEXT_4 = pcrecpp_unittest$(EXEEXT) \
1.1       misho     364: @WITH_PCRE_CPP_TRUE@   pcre_scanner_unittest$(EXEEXT) \
                    365: @WITH_PCRE_CPP_TRUE@   pcre_stringpiece_unittest$(EXEEXT)
                    366: PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
                    367: am__dftables_SOURCES_DIST = dftables.c
                    368: @WITH_REBUILD_CHARTABLES_TRUE@am_dftables_OBJECTS =  \
                    369: @WITH_REBUILD_CHARTABLES_TRUE@ dftables.$(OBJEXT)
                    370: dftables_OBJECTS = $(am_dftables_OBJECTS)
                    371: dftables_LDADD = $(LDADD)
                    372: am__pcre_jit_test_SOURCES_DIST = pcre_jit_test.c
1.1.1.4 ! misho     373: @WITH_JIT_TRUE@am_pcre_jit_test_OBJECTS =  \
        !           374: @WITH_JIT_TRUE@        pcre_jit_test-pcre_jit_test.$(OBJEXT)
1.1       misho     375: pcre_jit_test_OBJECTS = $(am_pcre_jit_test_OBJECTS)
1.1.1.4 ! misho     376: am__DEPENDENCIES_1 =
        !           377: @WITH_GCOV_TRUE@@WITH_JIT_TRUE@am__DEPENDENCIES_2 =  \
        !           378: @WITH_GCOV_TRUE@@WITH_JIT_TRUE@        $(am__DEPENDENCIES_1)
        !           379: @WITH_JIT_TRUE@pcre_jit_test_DEPENDENCIES = $(am__append_15) \
        !           380: @WITH_JIT_TRUE@        $(am__append_16) $(am__append_17) \
        !           381: @WITH_JIT_TRUE@        $(am__DEPENDENCIES_2)
        !           382: pcre_jit_test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
        !           383:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(pcre_jit_test_CFLAGS) \
        !           384:        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1       misho     385: am__pcre_scanner_unittest_SOURCES_DIST = pcre_scanner_unittest.cc
1.1.1.4 ! misho     386: @WITH_PCRE_CPP_TRUE@am_pcre_scanner_unittest_OBJECTS = pcre_scanner_unittest-pcre_scanner_unittest.$(OBJEXT)
1.1       misho     387: pcre_scanner_unittest_OBJECTS = $(am_pcre_scanner_unittest_OBJECTS)
1.1.1.4 ! misho     388: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@am__DEPENDENCIES_3 =  \
        !           389: @WITH_GCOV_TRUE@@WITH_PCRE_CPP_TRUE@   $(am__DEPENDENCIES_1)
1.1       misho     390: @WITH_PCRE_CPP_TRUE@pcre_scanner_unittest_DEPENDENCIES =  \
1.1.1.4 ! misho     391: @WITH_PCRE_CPP_TRUE@   libpcrecpp.la $(am__DEPENDENCIES_3)
        !           392: pcre_scanner_unittest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
        !           393:        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
        !           394:        $(pcre_scanner_unittest_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
        !           395:        $(LDFLAGS) -o $@
1.1       misho     396: am__pcre_stringpiece_unittest_SOURCES_DIST =  \
                    397:        pcre_stringpiece_unittest.cc
1.1.1.4 ! misho     398: @WITH_PCRE_CPP_TRUE@am_pcre_stringpiece_unittest_OBJECTS = pcre_stringpiece_unittest-pcre_stringpiece_unittest.$(OBJEXT)
1.1       misho     399: pcre_stringpiece_unittest_OBJECTS =  \
                    400:        $(am_pcre_stringpiece_unittest_OBJECTS)
                    401: @WITH_PCRE_CPP_TRUE@pcre_stringpiece_unittest_DEPENDENCIES =  \
1.1.1.4 ! misho     402: @WITH_PCRE_CPP_TRUE@   libpcrecpp.la $(am__DEPENDENCIES_3)
        !           403: pcre_stringpiece_unittest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
        !           404:        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
        !           405:        $(pcre_stringpiece_unittest_CXXFLAGS) $(CXXFLAGS) \
        !           406:        $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1       misho     407: am__pcrecpp_unittest_SOURCES_DIST = pcrecpp_unittest.cc
1.1.1.4 ! misho     408: @WITH_PCRE_CPP_TRUE@am_pcrecpp_unittest_OBJECTS = pcrecpp_unittest-pcrecpp_unittest.$(OBJEXT)
1.1       misho     409: pcrecpp_unittest_OBJECTS = $(am_pcrecpp_unittest_OBJECTS)
1.1.1.4 ! misho     410: @WITH_PCRE_CPP_TRUE@pcrecpp_unittest_DEPENDENCIES = libpcrecpp.la \
        !           411: @WITH_PCRE_CPP_TRUE@   $(am__DEPENDENCIES_3)
        !           412: pcrecpp_unittest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
        !           413:        $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
        !           414:        $(pcrecpp_unittest_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
        !           415:        $(LDFLAGS) -o $@
1.1.1.2   misho     416: am__pcregrep_SOURCES_DIST = pcregrep.c
1.1.1.4 ! misho     417: @WITH_PCRE8_TRUE@am_pcregrep_OBJECTS = pcregrep-pcregrep.$(OBJEXT)
1.1       misho     418: pcregrep_OBJECTS = $(am_pcregrep_OBJECTS)
1.1.1.4 ! misho     419: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@am__DEPENDENCIES_4 =  \
        !           420: @WITH_GCOV_TRUE@@WITH_PCRE8_TRUE@      $(am__DEPENDENCIES_1)
1.1.1.2   misho     421: @WITH_PCRE8_TRUE@pcregrep_DEPENDENCIES = $(am__DEPENDENCIES_1) \
1.1.1.3   misho     422: @WITH_PCRE8_TRUE@      $(am__DEPENDENCIES_1) libpcre.la \
1.1.1.4 ! misho     423: @WITH_PCRE8_TRUE@      libpcreposix.la $(am__DEPENDENCIES_4)
        !           424: pcregrep_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
        !           425:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(pcregrep_CFLAGS) \
        !           426:        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.2   misho     427: am__pcretest_SOURCES_DIST = pcretest.c pcre_printint.c \
1.1.1.4 ! misho     428:        pcre16_printint.c pcre32_printint.c
        !           429: @WITH_PCRE8_TRUE@am__objects_1 = pcretest-pcre_printint.$(OBJEXT)
        !           430: @WITH_PCRE16_TRUE@am__objects_2 = pcretest-pcre16_printint.$(OBJEXT)
        !           431: @WITH_PCRE32_TRUE@am__objects_3 = pcretest-pcre32_printint.$(OBJEXT)
        !           432: am_pcretest_OBJECTS = pcretest-pcretest.$(OBJEXT) $(am__objects_1) \
        !           433:        $(am__objects_2) $(am__objects_3)
1.1       misho     434: pcretest_OBJECTS = $(am_pcretest_OBJECTS)
1.1.1.4 ! misho     435: @WITH_GCOV_TRUE@am__DEPENDENCIES_5 = $(am__DEPENDENCIES_1)
        !           436: pcretest_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__append_30) \
        !           437:        $(am__append_32) $(am__append_34) $(am__DEPENDENCIES_5)
        !           438: pcretest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
        !           439:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(pcretest_CFLAGS) \
        !           440:        $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.2   misho     441: am__dist_noinst_SCRIPTS_DIST = RunTest RunGrepTest
1.1       misho     442: SCRIPTS = $(bin_SCRIPTS) $(dist_noinst_SCRIPTS)
1.1.1.4 ! misho     443: AM_V_P = $(am__v_P_@AM_V@)
        !           444: am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
        !           445: am__v_P_0 = false
        !           446: am__v_P_1 = :
        !           447: AM_V_GEN = $(am__v_GEN_@AM_V@)
        !           448: am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
        !           449: am__v_GEN_0 = @echo "  GEN     " $@;
        !           450: am__v_GEN_1 =
        !           451: AM_V_at = $(am__v_at_@AM_V@)
        !           452: am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
        !           453: am__v_at_0 = @
        !           454: am__v_at_1 =
1.1       misho     455: DEFAULT_INCLUDES = -I.@am__isrc@
                    456: depcomp = $(SHELL) $(top_srcdir)/depcomp
                    457: am__depfiles_maybe = depfiles
                    458: am__mv = mv -f
                    459: COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
                    460:        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
1.1.1.2   misho     461: LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
                    462:        $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
                    463:        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
                    464:        $(AM_CFLAGS) $(CFLAGS)
1.1.1.4 ! misho     465: AM_V_CC = $(am__v_CC_@AM_V@)
        !           466: am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
        !           467: am__v_CC_0 = @echo "  CC      " $@;
        !           468: am__v_CC_1 =
1.1       misho     469: CCLD = $(CC)
1.1.1.2   misho     470: LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
                    471:        $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
                    472:        $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.4 ! misho     473: AM_V_CCLD = $(am__v_CCLD_@AM_V@)
        !           474: am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
        !           475: am__v_CCLD_0 = @echo "  CCLD    " $@;
        !           476: am__v_CCLD_1 =
1.1       misho     477: CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
                    478:        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
1.1.1.2   misho     479: LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
                    480:        $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
                    481:        $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
                    482:        $(AM_CXXFLAGS) $(CXXFLAGS)
1.1.1.4 ! misho     483: AM_V_CXX = $(am__v_CXX_@AM_V@)
        !           484: am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
        !           485: am__v_CXX_0 = @echo "  CXX     " $@;
        !           486: am__v_CXX_1 =
1.1       misho     487: CXXLD = $(CXX)
1.1.1.2   misho     488: CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
                    489:        $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
                    490:        $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
1.1.1.4 ! misho     491: AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
        !           492: am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
        !           493: am__v_CXXLD_0 = @echo "  CXXLD   " $@;
        !           494: am__v_CXXLD_1 =
1.1       misho     495: SOURCES = $(libpcre_la_SOURCES) $(nodist_libpcre_la_SOURCES) \
1.1.1.2   misho     496:        $(libpcre16_la_SOURCES) $(nodist_libpcre16_la_SOURCES) \
1.1.1.4 ! misho     497:        $(libpcre32_la_SOURCES) $(nodist_libpcre32_la_SOURCES) \
1.1       misho     498:        $(libpcrecpp_la_SOURCES) $(libpcreposix_la_SOURCES) \
                    499:        $(dftables_SOURCES) $(pcre_jit_test_SOURCES) \
                    500:        $(pcre_scanner_unittest_SOURCES) \
                    501:        $(pcre_stringpiece_unittest_SOURCES) \
                    502:        $(pcrecpp_unittest_SOURCES) $(pcregrep_SOURCES) \
                    503:        $(pcretest_SOURCES)
1.1.1.2   misho     504: DIST_SOURCES = $(am__libpcre_la_SOURCES_DIST) \
                    505:        $(am__libpcre16_la_SOURCES_DIST) \
1.1.1.4 ! misho     506:        $(am__libpcre32_la_SOURCES_DIST) \
1.1.1.2   misho     507:        $(am__libpcrecpp_la_SOURCES_DIST) \
                    508:        $(am__libpcreposix_la_SOURCES_DIST) \
                    509:        $(am__dftables_SOURCES_DIST) $(am__pcre_jit_test_SOURCES_DIST) \
1.1       misho     510:        $(am__pcre_scanner_unittest_SOURCES_DIST) \
                    511:        $(am__pcre_stringpiece_unittest_SOURCES_DIST) \
1.1.1.2   misho     512:        $(am__pcrecpp_unittest_SOURCES_DIST) \
                    513:        $(am__pcregrep_SOURCES_DIST) $(am__pcretest_SOURCES_DIST)
1.1.1.4 ! misho     514: am__can_run_installinfo = \
        !           515:   case $$AM_UPDATE_INFO_DIR in \
        !           516:     n|no|NO) false;; \
        !           517:     *) (install-info --version) >/dev/null 2>&1;; \
        !           518:   esac
1.1       misho     519: man1dir = $(mandir)/man1
                    520: man3dir = $(mandir)/man3
                    521: NROFF = nroff
                    522: MANS = $(dist_man_MANS) $(man_MANS)
                    523: DATA = $(dist_doc_DATA) $(dist_html_DATA) $(dist_noinst_DATA) \
                    524:        $(html_DATA) $(pkgconfig_DATA)
                    525: am__include_HEADERS_DIST = pcreposix.h pcrecpp.h pcre_scanner.h
                    526: HEADERS = $(include_HEADERS) $(nodist_include_HEADERS)
1.1.1.4 ! misho     527: am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
        !           528:        $(LISP)config.h.in
        !           529: # Read a list of newline-separated strings from the standard input,
        !           530: # and print each of them once, without duplicates.  Input order is
        !           531: # *not* preserved.
        !           532: am__uniquify_input = $(AWK) '\
        !           533:   BEGIN { nonempty = 0; } \
        !           534:   { items[$$0] = 1; nonempty = 1; } \
        !           535:   END { if (nonempty) { for (i in items) print i; }; } \
        !           536: '
        !           537: # Make sure the list of sources is unique.  This is necessary because,
        !           538: # e.g., the same source file might be shared among _SOURCES variables
        !           539: # for different programs/libraries.
        !           540: am__define_uniq_tagged_files = \
        !           541:   list='$(am__tagged_files)'; \
        !           542:   unique=`for i in $$list; do \
        !           543:     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
        !           544:   done | $(am__uniquify_input)`
1.1       misho     545: ETAGS = etags
                    546: CTAGS = ctags
1.1.1.4 ! misho     547: CSCOPE = cscope
        !           548: AM_RECURSIVE_TARGETS = cscope check recheck
        !           549: am__tty_colors_dummy = \
        !           550:   mgn= red= grn= lgn= blu= brg= std=; \
        !           551:   am__color_tests=no
        !           552: am__tty_colors = { \
        !           553:   $(am__tty_colors_dummy); \
        !           554:   if test "X$(AM_COLOR_TESTS)" = Xno; then \
        !           555:     am__color_tests=no; \
        !           556:   elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
        !           557:     am__color_tests=yes; \
        !           558:   elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
        !           559:     am__color_tests=yes; \
        !           560:   fi; \
        !           561:   if test $$am__color_tests = yes; then \
        !           562:     red=''; \
        !           563:     grn=''; \
        !           564:     lgn=''; \
        !           565:     blu=''; \
        !           566:     mgn=''; \
        !           567:     brg=''; \
        !           568:     std=''; \
        !           569:   fi; \
        !           570: }
        !           571: am__recheck_rx = ^[    ]*:recheck:[    ]*
        !           572: am__global_test_result_rx = ^[         ]*:global-test-result:[         ]*
        !           573: am__copy_in_global_log_rx = ^[         ]*:copy-in-global-log:[         ]*
        !           574: # A command that, given a newline-separated list of test names on the
        !           575: # standard input, print the name of the tests that are to be re-run
        !           576: # upon "make recheck".
        !           577: am__list_recheck_tests = $(AWK) '{ \
        !           578:   recheck = 1; \
        !           579:   while ((rc = (getline line < ($$0 ".trs"))) != 0) \
        !           580:     { \
        !           581:       if (rc < 0) \
        !           582:         { \
        !           583:           if ((getline line2 < ($$0 ".log")) < 0) \
        !           584:            recheck = 0; \
        !           585:           break; \
        !           586:         } \
        !           587:       else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
        !           588:         { \
        !           589:           recheck = 0; \
        !           590:           break; \
        !           591:         } \
        !           592:       else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
        !           593:         { \
        !           594:           break; \
        !           595:         } \
        !           596:     }; \
        !           597:   if (recheck) \
        !           598:     print $$0; \
        !           599:   close ($$0 ".trs"); \
        !           600:   close ($$0 ".log"); \
        !           601: }'
        !           602: # A command that, given a newline-separated list of test names on the
        !           603: # standard input, create the global log from their .trs and .log files.
        !           604: am__create_global_log = $(AWK) ' \
        !           605: function fatal(msg) \
        !           606: { \
        !           607:   print "fatal: making $@: " msg | "cat >&2"; \
        !           608:   exit 1; \
        !           609: } \
        !           610: function rst_section(header) \
        !           611: { \
        !           612:   print header; \
        !           613:   len = length(header); \
        !           614:   for (i = 1; i <= len; i = i + 1) \
        !           615:     printf "="; \
        !           616:   printf "\n\n"; \
        !           617: } \
        !           618: { \
        !           619:   copy_in_global_log = 1; \
        !           620:   global_test_result = "RUN"; \
        !           621:   while ((rc = (getline line < ($$0 ".trs"))) != 0) \
        !           622:     { \
        !           623:       if (rc < 0) \
        !           624:          fatal("failed to read from " $$0 ".trs"); \
        !           625:       if (line ~ /$(am__global_test_result_rx)/) \
        !           626:         { \
        !           627:           sub("$(am__global_test_result_rx)", "", line); \
        !           628:           sub("[       ]*$$", "", line); \
        !           629:           global_test_result = line; \
        !           630:         } \
        !           631:       else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
        !           632:         copy_in_global_log = 0; \
        !           633:     }; \
        !           634:   if (copy_in_global_log) \
        !           635:     { \
        !           636:       rst_section(global_test_result ": " $$0); \
        !           637:       while ((rc = (getline line < ($$0 ".log"))) != 0) \
        !           638:       { \
        !           639:         if (rc < 0) \
        !           640:           fatal("failed to read from " $$0 ".log"); \
        !           641:         print line; \
        !           642:       }; \
        !           643:       printf "\n"; \
        !           644:     }; \
        !           645:   close ($$0 ".trs"); \
        !           646:   close ($$0 ".log"); \
        !           647: }'
        !           648: # Restructured Text title.
        !           649: am__rst_title = { sed 's/.*/   &   /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
        !           650: # Solaris 10 'make', and several other traditional 'make' implementations,
        !           651: # pass "-e" to $(SHELL), and POSIX 2008 even requires this.  Work around it
        !           652: # by disabling -e (using the XSI extension "set +e") if it's set.
        !           653: am__sh_e_setup = case $$- in *e*) set +e;; esac
        !           654: # Default flags passed to test drivers.
        !           655: am__common_driver_flags = \
        !           656:   --color-tests "$$am__color_tests" \
        !           657:   --enable-hard-errors "$$am__enable_hard_errors" \
        !           658:   --expect-failure "$$am__expect_failure"
        !           659: # To be inserted before the command running the test.  Creates the
        !           660: # directory for the log if needed.  Stores in $dir the directory
        !           661: # containing $f, in $tst the test, in $log the log.  Executes the
        !           662: # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
        !           663: # passes TESTS_ENVIRONMENT.  Set up options for the wrapper that
        !           664: # will run the test scripts (or their associated LOG_COMPILER, if
        !           665: # thy have one).
        !           666: am__check_pre = \
        !           667: $(am__sh_e_setup);                                     \
        !           668: $(am__vpath_adj_setup) $(am__vpath_adj)                        \
        !           669: $(am__tty_colors);                                     \
        !           670: srcdir=$(srcdir); export srcdir;                       \
        !           671: case "$@" in                                           \
        !           672:   */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;;   \
        !           673:     *) am__odir=.;;                                    \
        !           674: esac;                                                  \
        !           675: test "x$$am__odir" = x"." || test -d "$$am__odir"      \
        !           676:   || $(MKDIR_P) "$$am__odir" || exit $$?;              \
        !           677: if test -f "./$$f"; then dir=./;                       \
        !           678: elif test -f "$$f"; then dir=;                         \
        !           679: else dir="$(srcdir)/"; fi;                             \
        !           680: tst=$$dir$$f; log='$@';                                \
        !           681: if test -n '$(DISABLE_HARD_ERRORS)'; then              \
        !           682:   am__enable_hard_errors=no;                           \
        !           683: else                                                   \
        !           684:   am__enable_hard_errors=yes;                          \
        !           685: fi;                                                    \
        !           686: case " $(XFAIL_TESTS) " in                             \
        !           687:   *[\ \        ]$$f[\ \        ]* | *[\ \      ]$$dir$$f[\ \   ]*) \
        !           688:     am__expect_failure=yes;;                           \
        !           689:   *)                                                   \
        !           690:     am__expect_failure=no;;                            \
        !           691: esac;                                                  \
        !           692: $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
        !           693: # A shell command to get the names of the tests scripts with any registered
        !           694: # extension removed (i.e., equivalently, the names of the test logs, with
        !           695: # the '.log' extension removed).  The result is saved in the shell variable
        !           696: # '$bases'.  This honors runtime overriding of TESTS and TEST_LOGS.  Sadly,
        !           697: # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
        !           698: # since that might cause problem with VPATH rewrites for suffix-less tests.
        !           699: # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
        !           700: am__set_TESTS_bases = \
        !           701:   bases='$(TEST_LOGS)'; \
        !           702:   bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
        !           703:   bases=`echo $$bases`
        !           704: RECHECK_LOGS = $(TEST_LOGS)
        !           705: TEST_SUITE_LOG = test-suite.log
        !           706: TEST_EXTENSIONS = @EXEEXT@ .test
        !           707: LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
        !           708: LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
        !           709: am__set_b = \
        !           710:   case '$@' in \
        !           711:     */*) \
        !           712:       case '$*' in \
        !           713:         */*) b='$*';; \
        !           714:           *) b=`echo '$@' | sed 's/\.log$$//'`; \
        !           715:        esac;; \
        !           716:     *) \
        !           717:       b='$*';; \
        !           718:   esac
        !           719: am__test_logs1 = $(TESTS:=.log)
        !           720: am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
        !           721: TEST_LOGS = $(am__test_logs2:.test.log=.log)
        !           722: TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
        !           723: TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
        !           724:        $(TEST_LOG_FLAGS)
1.1       misho     725: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
                    726: distdir = $(PACKAGE)-$(VERSION)
                    727: top_distdir = $(distdir)
                    728: am__remove_distdir = \
1.1.1.4 ! misho     729:   if test -d "$(distdir)"; then \
        !           730:     find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
        !           731:       && rm -rf "$(distdir)" \
        !           732:       || { sleep 5 && rm -rf "$(distdir)"; }; \
        !           733:   else :; fi
        !           734: am__post_remove_distdir = $(am__remove_distdir)
1.1       misho     735: DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 $(distdir).zip
                    736: GZIP_ENV = --best
1.1.1.4 ! misho     737: DIST_TARGETS = dist-bzip2 dist-gzip dist-zip
1.1       misho     738: distuninstallcheck_listfiles = find . -type f -print
1.1.1.4 ! misho     739: am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
        !           740:   | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
1.1       misho     741: distcleancheck_listfiles = find . -type f -print
                    742: ACLOCAL = @ACLOCAL@
                    743: AMTAR = @AMTAR@
1.1.1.2   misho     744: AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
1.1       misho     745: AR = @AR@
                    746: AS = @AS@
                    747: AUTOCONF = @AUTOCONF@
                    748: AUTOHEADER = @AUTOHEADER@
                    749: AUTOMAKE = @AUTOMAKE@
                    750: AWK = @AWK@
                    751: CC = @CC@
                    752: CCDEPMODE = @CCDEPMODE@
                    753: CFLAGS = @CFLAGS@
                    754: CPP = @CPP@
                    755: CPPFLAGS = @CPPFLAGS@
                    756: CXX = @CXX@
                    757: CXXCPP = @CXXCPP@
                    758: CXXDEPMODE = @CXXDEPMODE@
                    759: CXXFLAGS = @CXXFLAGS@
                    760: CYGPATH_W = @CYGPATH_W@
                    761: DEFS = @DEFS@
                    762: DEPDIR = @DEPDIR@
                    763: DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
                    764: DLLTOOL = @DLLTOOL@
                    765: DSYMUTIL = @DSYMUTIL@
                    766: DUMPBIN = @DUMPBIN@
                    767: ECHO_C = @ECHO_C@
                    768: ECHO_N = @ECHO_N@
                    769: ECHO_T = @ECHO_T@
                    770: EGREP = @EGREP@
                    771: EXEEXT = @EXEEXT@
1.1.1.2   misho     772: EXTRA_LIBPCRE16_LDFLAGS = @EXTRA_LIBPCRE16_LDFLAGS@
1.1.1.4 ! misho     773: EXTRA_LIBPCRE32_LDFLAGS = @EXTRA_LIBPCRE32_LDFLAGS@
1.1       misho     774: EXTRA_LIBPCRECPP_LDFLAGS = @EXTRA_LIBPCRECPP_LDFLAGS@
                    775: EXTRA_LIBPCREPOSIX_LDFLAGS = @EXTRA_LIBPCREPOSIX_LDFLAGS@
                    776: EXTRA_LIBPCRE_LDFLAGS = @EXTRA_LIBPCRE_LDFLAGS@
                    777: FGREP = @FGREP@
1.1.1.4 ! misho     778: GCOV_CFLAGS = @GCOV_CFLAGS@
        !           779: GCOV_CXXFLAGS = @GCOV_CXXFLAGS@
        !           780: GCOV_LIBS = @GCOV_LIBS@
        !           781: GENHTML = @GENHTML@
1.1       misho     782: GREP = @GREP@
1.1.1.4 ! misho     783: HAVE_VISIBILITY = @HAVE_VISIBILITY@
1.1       misho     784: INSTALL = @INSTALL@
                    785: INSTALL_DATA = @INSTALL_DATA@
                    786: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                    787: INSTALL_SCRIPT = @INSTALL_SCRIPT@
                    788: INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
1.1.1.4 ! misho     789: LCOV = @LCOV@
1.1       misho     790: LD = @LD@
                    791: LDFLAGS = @LDFLAGS@
                    792: LIBBZ2 = @LIBBZ2@
                    793: LIBOBJS = @LIBOBJS@
                    794: LIBREADLINE = @LIBREADLINE@
                    795: LIBS = @LIBS@
                    796: LIBTOOL = @LIBTOOL@
                    797: LIBZ = @LIBZ@
                    798: LIPO = @LIPO@
                    799: LN_S = @LN_S@
                    800: LTLIBOBJS = @LTLIBOBJS@
                    801: MAKEINFO = @MAKEINFO@
                    802: MANIFEST_TOOL = @MANIFEST_TOOL@
                    803: MKDIR_P = @MKDIR_P@
                    804: NM = @NM@
                    805: NMEDIT = @NMEDIT@
                    806: OBJDUMP = @OBJDUMP@
                    807: OBJEXT = @OBJEXT@
                    808: OTOOL = @OTOOL@
                    809: OTOOL64 = @OTOOL64@
                    810: PACKAGE = @PACKAGE@
                    811: PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
                    812: PACKAGE_NAME = @PACKAGE_NAME@
                    813: PACKAGE_STRING = @PACKAGE_STRING@
                    814: PACKAGE_TARNAME = @PACKAGE_TARNAME@
                    815: PACKAGE_URL = @PACKAGE_URL@
                    816: PACKAGE_VERSION = @PACKAGE_VERSION@
                    817: PATH_SEPARATOR = @PATH_SEPARATOR@
                    818: PCRE_DATE = @PCRE_DATE@
                    819: PCRE_MAJOR = @PCRE_MAJOR@
                    820: PCRE_MINOR = @PCRE_MINOR@
                    821: PCRE_PRERELEASE = @PCRE_PRERELEASE@
                    822: PCRE_STATIC_CFLAG = @PCRE_STATIC_CFLAG@
1.1.1.4 ! misho     823: PKG_CONFIG = @PKG_CONFIG@
        !           824: PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
        !           825: PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
        !           826: PTHREAD_CC = @PTHREAD_CC@
        !           827: PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
        !           828: PTHREAD_LIBS = @PTHREAD_LIBS@
1.1       misho     829: RANLIB = @RANLIB@
                    830: SED = @SED@
                    831: SET_MAKE = @SET_MAKE@
                    832: SHELL = @SHELL@
1.1.1.4 ! misho     833: SHTOOL = @SHTOOL@
1.1       misho     834: STRIP = @STRIP@
1.1.1.4 ! misho     835: VALGRIND_CFLAGS = @VALGRIND_CFLAGS@
        !           836: VALGRIND_LIBS = @VALGRIND_LIBS@
1.1       misho     837: VERSION = @VERSION@
1.1.1.4 ! misho     838: VISIBILITY_CFLAGS = @VISIBILITY_CFLAGS@
        !           839: VISIBILITY_CXXFLAGS = @VISIBILITY_CXXFLAGS@
1.1       misho     840: abs_builddir = @abs_builddir@
                    841: abs_srcdir = @abs_srcdir@
                    842: abs_top_builddir = @abs_top_builddir@
                    843: abs_top_srcdir = @abs_top_srcdir@
                    844: ac_ct_AR = @ac_ct_AR@
                    845: ac_ct_CC = @ac_ct_CC@
                    846: ac_ct_CXX = @ac_ct_CXX@
                    847: ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
                    848: am__include = @am__include@
                    849: am__leading_dot = @am__leading_dot@
                    850: am__quote = @am__quote@
                    851: am__tar = @am__tar@
                    852: am__untar = @am__untar@
1.1.1.4 ! misho     853: ax_pthread_config = @ax_pthread_config@
1.1       misho     854: bindir = @bindir@
                    855: build = @build@
                    856: build_alias = @build_alias@
                    857: build_cpu = @build_cpu@
                    858: build_os = @build_os@
                    859: build_vendor = @build_vendor@
                    860: builddir = @builddir@
                    861: datadir = @datadir@
                    862: datarootdir = @datarootdir@
                    863: docdir = @docdir@
                    864: dvidir = @dvidir@
                    865: enable_cpp = @enable_cpp@
1.1.1.2   misho     866: enable_pcre16 = @enable_pcre16@
1.1.1.4 ! misho     867: enable_pcre32 = @enable_pcre32@
1.1.1.2   misho     868: enable_pcre8 = @enable_pcre8@
1.1       misho     869: exec_prefix = @exec_prefix@
                    870: host = @host@
                    871: host_alias = @host_alias@
                    872: host_cpu = @host_cpu@
                    873: host_os = @host_os@
                    874: host_vendor = @host_vendor@
                    875: htmldir = @htmldir@
                    876: includedir = @includedir@
                    877: infodir = @infodir@
                    878: install_sh = @install_sh@
                    879: libdir = @libdir@
                    880: libexecdir = @libexecdir@
                    881: localedir = @localedir@
                    882: localstatedir = @localstatedir@
                    883: mandir = @mandir@
                    884: mkdir_p = @mkdir_p@
                    885: oldincludedir = @oldincludedir@
                    886: pcre_have_bits_type_traits = @pcre_have_bits_type_traits@
                    887: pcre_have_long_long = @pcre_have_long_long@
                    888: pcre_have_type_traits = @pcre_have_type_traits@
                    889: pcre_have_ulong_long = @pcre_have_ulong_long@
                    890: pdfdir = @pdfdir@
                    891: prefix = @prefix@
                    892: program_transform_name = @program_transform_name@
                    893: psdir = @psdir@
                    894: sbindir = @sbindir@
                    895: sharedstatedir = @sharedstatedir@
                    896: srcdir = @srcdir@
                    897: sysconfdir = @sysconfdir@
                    898: target_alias = @target_alias@
                    899: top_build_prefix = @top_build_prefix@
                    900: top_builddir = @top_builddir@
                    901: top_srcdir = @top_srcdir@
                    902: ACLOCAL_AMFLAGS = -I m4
                    903: dist_doc_DATA = \
                    904:   doc/pcre.txt \
                    905:   doc/pcre-config.txt \
                    906:   doc/pcregrep.txt \
                    907:   doc/pcretest.txt \
                    908:   AUTHORS \
                    909:   COPYING \
                    910:   ChangeLog \
                    911:   LICENCE \
                    912:   NEWS \
                    913:   README
                    914: 
1.1.1.4 ! misho     915: 
        !           916: # Note that pcrecpp.html is not in this list; it is listed separately below.
1.1       misho     917: dist_html_DATA = \
1.1.1.4 ! misho     918:   doc/html/NON-AUTOTOOLS-BUILD.txt \
        !           919:   doc/html/README.txt \
1.1       misho     920:   doc/html/index.html \
1.1.1.4 ! misho     921:   doc/html/pcre-config.html \
1.1       misho     922:   doc/html/pcre.html \
1.1.1.2   misho     923:   doc/html/pcre16.html \
1.1.1.4 ! misho     924:   doc/html/pcre32.html \
1.1       misho     925:   doc/html/pcre_assign_jit_stack.html \
                    926:   doc/html/pcre_compile.html \
                    927:   doc/html/pcre_compile2.html \
                    928:   doc/html/pcre_config.html \
                    929:   doc/html/pcre_copy_named_substring.html \
                    930:   doc/html/pcre_copy_substring.html \
                    931:   doc/html/pcre_dfa_exec.html \
                    932:   doc/html/pcre_exec.html \
                    933:   doc/html/pcre_free_study.html \
                    934:   doc/html/pcre_free_substring.html \
                    935:   doc/html/pcre_free_substring_list.html \
                    936:   doc/html/pcre_fullinfo.html \
                    937:   doc/html/pcre_get_named_substring.html \
                    938:   doc/html/pcre_get_stringnumber.html \
                    939:   doc/html/pcre_get_stringtable_entries.html \
                    940:   doc/html/pcre_get_substring.html \
                    941:   doc/html/pcre_get_substring_list.html \
1.1.1.4 ! misho     942:   doc/html/pcre_jit_exec.html \
1.1       misho     943:   doc/html/pcre_jit_stack_alloc.html \
                    944:   doc/html/pcre_jit_stack_free.html \
                    945:   doc/html/pcre_maketables.html \
1.1.1.2   misho     946:   doc/html/pcre_pattern_to_host_byte_order.html \
1.1       misho     947:   doc/html/pcre_refcount.html \
                    948:   doc/html/pcre_study.html \
1.1.1.2   misho     949:   doc/html/pcre_utf16_to_host_byte_order.html \
1.1.1.4 ! misho     950:   doc/html/pcre_utf32_to_host_byte_order.html \
1.1       misho     951:   doc/html/pcre_version.html \
                    952:   doc/html/pcreapi.html \
                    953:   doc/html/pcrebuild.html \
                    954:   doc/html/pcrecallout.html \
                    955:   doc/html/pcrecompat.html \
                    956:   doc/html/pcredemo.html \
                    957:   doc/html/pcregrep.html \
                    958:   doc/html/pcrejit.html \
                    959:   doc/html/pcrelimits.html \
                    960:   doc/html/pcrematching.html \
                    961:   doc/html/pcrepartial.html \
                    962:   doc/html/pcrepattern.html \
                    963:   doc/html/pcreperform.html \
                    964:   doc/html/pcreposix.html \
                    965:   doc/html/pcreprecompile.html \
                    966:   doc/html/pcresample.html \
                    967:   doc/html/pcrestack.html \
                    968:   doc/html/pcresyntax.html \
                    969:   doc/html/pcretest.html \
                    970:   doc/html/pcreunicode.html
                    971: 
                    972: pcrecpp_html = doc/html/pcrecpp.html
                    973: dist_noinst_DATA = $(pcrecpp_html)
                    974: @WITH_PCRE_CPP_TRUE@html_DATA = $(pcrecpp_html)
                    975: 
                    976: # The Libtool libraries to install.  We'll add to this later.
1.1.1.4 ! misho     977: lib_LTLIBRARIES = $(am__append_4) $(am__append_5) $(am__append_6) \
        !           978:        $(am__append_20) $(am__append_22)
1.1       misho     979: check_SCRIPTS =
1.1.1.4 ! misho     980: dist_noinst_SCRIPTS = RunTest $(am__append_39)
1.1       misho     981: 
                    982: # Additional files to delete on 'make clean' and 'make maintainer-clean'.
1.1.1.4 ! misho     983: CLEANFILES = pcre_chartables.c testsavedregex teststderr testtemp* \
        !           984:        testtry testNinput
        !           985: MAINTAINERCLEANFILES = pcre.h.generic config.h.generic
1.1       misho     986: 
                    987: # Additional files to bundle with the distribution, over and above what
                    988: # the Autotools include by default.
                    989: 
1.1.1.4 ! misho     990: # These files contain additional m4 macros that are used by autoconf.
        !           991: 
1.1       misho     992: # These files contain maintenance information
                    993: 
                    994: # These files are used in the preparation of a release
                    995: 
                    996: # These files are to do with building for Virtual Pascal
                    997: 
                    998: # These files are usable versions of pcre.h and config.h that are distributed
                    999: # for the benefit of people who are building PCRE manually, without the
                   1000: # Autotools support.
                   1001: 
1.1.1.2   misho    1002: # The pcre_chartables.c.dist file is the default version of pcre_chartables.c,
                   1003: # used unless --enable-rebuild-chartables is specified.
1.1       misho    1004: 
                   1005: # The JIT compiler lives in a separate directory, but its files are #included
                   1006: # when pcre_jit_compile.c is processed, so they must be distributed.
                   1007: 
                   1008: # PCRE demonstration program. No longer built automatcally. The point is that
                   1009: # the users should build it themselves. So just distribute the source.
                   1010: # noinst_PROGRAMS += pcredemo
                   1011: # pcredemo_SOURCES = pcredemo.c
                   1012: # pcredemo_LDADD = libpcre.la
1.1.1.4 ! misho    1013: EXTRA_DIST = m4/ax_pthread.m4 m4/pcre_visibility.m4 doc/perltest.txt \
        !          1014:        NON-UNIX-USE NON-AUTOTOOLS-BUILD HACKING PrepareRelease \
        !          1015:        CheckMan CleanTxt Detrail 132html doc/index.html.src \
        !          1016:        makevp.bat makevp_c.txt makevp_l.txt pcregexp.pas \
        !          1017:        pcre.h.generic config.h.generic pcre_chartables.c.dist \
        !          1018:        sljit/sljitConfig.h sljit/sljitConfigInternal.h \
        !          1019:        sljit/sljitExecAllocator.c sljit/sljitLir.c sljit/sljitLir.h \
1.1       misho    1020:        sljit/sljitNativeARM_Thumb2.c sljit/sljitNativeARM_v5.c \
                   1021:        sljit/sljitNativeMIPS_32.c sljit/sljitNativeMIPS_common.c \
                   1022:        sljit/sljitNativePPC_32.c sljit/sljitNativePPC_64.c \
1.1.1.4 ! misho    1023:        sljit/sljitNativePPC_common.c sljit/sljitNativeSPARC_32.c \
        !          1024:        sljit/sljitNativeSPARC_common.c sljit/sljitNativeX86_32.c \
1.1       misho    1025:        sljit/sljitNativeX86_64.c sljit/sljitNativeX86_common.c \
1.1.1.3   misho    1026:        sljit/sljitUtils.c RunTest.bat testdata/grepbinary \
                   1027:        testdata/grepfilelist testdata/grepinput testdata/grepinput3 \
                   1028:        testdata/grepinput8 testdata/grepinputv testdata/grepinputx \
                   1029:        testdata/greplist testdata/grepoutput testdata/grepoutput8 \
                   1030:        testdata/grepoutputN testdata/greppatN4 testdata/saved16 \
                   1031:        testdata/saved16BE-1 testdata/saved16BE-2 testdata/saved16LE-1 \
1.1.1.4 ! misho    1032:        testdata/saved16LE-2 testdata/saved32 testdata/saved32BE-1 \
        !          1033:        testdata/saved32BE-2 testdata/saved32LE-1 testdata/saved32LE-2 \
        !          1034:        testdata/saved8 testdata/testinput1 testdata/testinput2 \
        !          1035:        testdata/testinput3 testdata/testinput4 testdata/testinput5 \
        !          1036:        testdata/testinput6 testdata/testinput7 testdata/testinput8 \
        !          1037:        testdata/testinput9 testdata/testinput10 testdata/testinput11 \
        !          1038:        testdata/testinput12 testdata/testinput13 testdata/testinput14 \
        !          1039:        testdata/testinput15 testdata/testinput16 testdata/testinput17 \
        !          1040:        testdata/testinput18 testdata/testinput19 testdata/testinput20 \
        !          1041:        testdata/testinput21 testdata/testinput22 testdata/testinput23 \
        !          1042:        testdata/testinput24 testdata/testinput25 testdata/testinput26 \
        !          1043:        testdata/testinputEBC testdata/testoutput1 \
        !          1044:        testdata/testoutput2 testdata/testoutput3 testdata/testoutput4 \
        !          1045:        testdata/testoutput5 testdata/testoutput6 testdata/testoutput7 \
        !          1046:        testdata/testoutput8 testdata/testoutput9 \
        !          1047:        testdata/testoutput10 testdata/testoutput11-8 \
        !          1048:        testdata/testoutput11-16 testdata/testoutput11-32 \
        !          1049:        testdata/testoutput12 testdata/testoutput13 \
        !          1050:        testdata/testoutput14 testdata/testoutput15 \
        !          1051:        testdata/testoutput16 testdata/testoutput17 \
        !          1052:        testdata/testoutput18-16 testdata/testoutput18-32 \
1.1.1.3   misho    1053:        testdata/testoutput19 testdata/testoutput20 \
1.1.1.4 ! misho    1054:        testdata/testoutput21-16 testdata/testoutput21-32 \
        !          1055:        testdata/testoutput22-16 testdata/testoutput22-32 \
        !          1056:        testdata/testoutput23 testdata/testoutput24 \
        !          1057:        testdata/testoutput25 testdata/testoutput26 \
        !          1058:        testdata/testoutputEBC testdata/wintestinput3 \
        !          1059:        testdata/wintestoutput3 perltest.pl pcredemo.c $(pcrecpp_man) \
        !          1060:        cmake/COPYING-CMAKE-SCRIPTS \
1.1       misho    1061:        cmake/FindPackageHandleStandardArgs.cmake \
1.1.1.3   misho    1062:        cmake/FindReadline.cmake cmake/FindEditline.cmake \
                   1063:        CMakeLists.txt config-cmake.h.in
1.1       misho    1064: 
                   1065: # These are the header files we'll install. We do not distribute pcre.h because
                   1066: # it is generated from pcre.h.in.
                   1067: nodist_include_HEADERS = pcre.h $(am__append_1)
                   1068: include_HEADERS = pcreposix.h $(am__append_2)
                   1069: bin_SCRIPTS = pcre-config
                   1070: @WITH_REBUILD_CHARTABLES_TRUE@dftables_SOURCES = dftables.c
1.1.1.2   misho    1071: BUILT_SOURCES = pcre_chartables.c
                   1072: @WITH_PCRE8_TRUE@libpcre_la_SOURCES = \
                   1073: @WITH_PCRE8_TRUE@  pcre_byte_order.c \
                   1074: @WITH_PCRE8_TRUE@  pcre_compile.c \
                   1075: @WITH_PCRE8_TRUE@  pcre_config.c \
                   1076: @WITH_PCRE8_TRUE@  pcre_dfa_exec.c \
                   1077: @WITH_PCRE8_TRUE@  pcre_exec.c \
                   1078: @WITH_PCRE8_TRUE@  pcre_fullinfo.c \
                   1079: @WITH_PCRE8_TRUE@  pcre_get.c \
                   1080: @WITH_PCRE8_TRUE@  pcre_globals.c \
                   1081: @WITH_PCRE8_TRUE@  pcre_internal.h \
                   1082: @WITH_PCRE8_TRUE@  pcre_jit_compile.c \
                   1083: @WITH_PCRE8_TRUE@  pcre_maketables.c \
                   1084: @WITH_PCRE8_TRUE@  pcre_newline.c \
                   1085: @WITH_PCRE8_TRUE@  pcre_ord2utf8.c \
                   1086: @WITH_PCRE8_TRUE@  pcre_refcount.c \
                   1087: @WITH_PCRE8_TRUE@  pcre_string_utils.c \
                   1088: @WITH_PCRE8_TRUE@  pcre_study.c \
                   1089: @WITH_PCRE8_TRUE@  pcre_tables.c \
                   1090: @WITH_PCRE8_TRUE@  pcre_ucd.c \
                   1091: @WITH_PCRE8_TRUE@  pcre_valid_utf8.c \
                   1092: @WITH_PCRE8_TRUE@  pcre_version.c \
                   1093: @WITH_PCRE8_TRUE@  pcre_xclass.c \
                   1094: @WITH_PCRE8_TRUE@  ucp.h
                   1095: 
1.1.1.4 ! misho    1096: @WITH_PCRE8_TRUE@libpcre_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) \
        !          1097: @WITH_PCRE8_TRUE@      $(am__append_7) $(am__append_10)
        !          1098: @WITH_PCRE8_TRUE@libpcre_la_LIBADD =
1.1.1.2   misho    1099: @WITH_PCRE8_TRUE@nodist_libpcre_la_SOURCES = \
                   1100: @WITH_PCRE8_TRUE@  pcre_chartables.c
                   1101: 
                   1102: @WITH_PCRE16_TRUE@libpcre16_la_SOURCES = \
                   1103: @WITH_PCRE16_TRUE@  pcre16_byte_order.c \
                   1104: @WITH_PCRE16_TRUE@  pcre16_chartables.c \
                   1105: @WITH_PCRE16_TRUE@  pcre16_compile.c \
                   1106: @WITH_PCRE16_TRUE@  pcre16_config.c \
                   1107: @WITH_PCRE16_TRUE@  pcre16_dfa_exec.c \
                   1108: @WITH_PCRE16_TRUE@  pcre16_exec.c \
                   1109: @WITH_PCRE16_TRUE@  pcre16_fullinfo.c \
                   1110: @WITH_PCRE16_TRUE@  pcre16_get.c \
                   1111: @WITH_PCRE16_TRUE@  pcre16_globals.c \
                   1112: @WITH_PCRE16_TRUE@  pcre16_jit_compile.c \
                   1113: @WITH_PCRE16_TRUE@  pcre16_maketables.c \
                   1114: @WITH_PCRE16_TRUE@  pcre16_newline.c \
                   1115: @WITH_PCRE16_TRUE@  pcre16_ord2utf16.c \
                   1116: @WITH_PCRE16_TRUE@  pcre16_refcount.c \
                   1117: @WITH_PCRE16_TRUE@  pcre16_string_utils.c \
                   1118: @WITH_PCRE16_TRUE@  pcre16_study.c \
                   1119: @WITH_PCRE16_TRUE@  pcre16_tables.c \
                   1120: @WITH_PCRE16_TRUE@  pcre16_ucd.c \
                   1121: @WITH_PCRE16_TRUE@  pcre16_utf16_utils.c \
                   1122: @WITH_PCRE16_TRUE@  pcre16_valid_utf16.c \
                   1123: @WITH_PCRE16_TRUE@  pcre16_version.c \
                   1124: @WITH_PCRE16_TRUE@  pcre16_xclass.c
1.1       misho    1125: 
1.1.1.4 ! misho    1126: @WITH_PCRE16_TRUE@libpcre16_la_CFLAGS = $(VISIBILITY_CFLAGS) \
        !          1127: @WITH_PCRE16_TRUE@     $(AM_CFLAGS) $(am__append_8) \
        !          1128: @WITH_PCRE16_TRUE@     $(am__append_11)
        !          1129: @WITH_PCRE16_TRUE@libpcre16_la_LIBADD =
1.1.1.2   misho    1130: @WITH_PCRE16_TRUE@nodist_libpcre16_la_SOURCES = \
                   1131: @WITH_PCRE16_TRUE@  pcre_chartables.c
1.1       misho    1132: 
1.1.1.4 ! misho    1133: @WITH_PCRE32_TRUE@libpcre32_la_SOURCES = \
        !          1134: @WITH_PCRE32_TRUE@  pcre32_byte_order.c \
        !          1135: @WITH_PCRE32_TRUE@  pcre32_chartables.c \
        !          1136: @WITH_PCRE32_TRUE@  pcre32_compile.c \
        !          1137: @WITH_PCRE32_TRUE@  pcre32_config.c \
        !          1138: @WITH_PCRE32_TRUE@  pcre32_dfa_exec.c \
        !          1139: @WITH_PCRE32_TRUE@  pcre32_exec.c \
        !          1140: @WITH_PCRE32_TRUE@  pcre32_fullinfo.c \
        !          1141: @WITH_PCRE32_TRUE@  pcre32_get.c \
        !          1142: @WITH_PCRE32_TRUE@  pcre32_globals.c \
        !          1143: @WITH_PCRE32_TRUE@  pcre32_jit_compile.c \
        !          1144: @WITH_PCRE32_TRUE@  pcre32_maketables.c \
        !          1145: @WITH_PCRE32_TRUE@  pcre32_newline.c \
        !          1146: @WITH_PCRE32_TRUE@  pcre32_ord2utf32.c \
        !          1147: @WITH_PCRE32_TRUE@  pcre32_refcount.c \
        !          1148: @WITH_PCRE32_TRUE@  pcre32_string_utils.c \
        !          1149: @WITH_PCRE32_TRUE@  pcre32_study.c \
        !          1150: @WITH_PCRE32_TRUE@  pcre32_tables.c \
        !          1151: @WITH_PCRE32_TRUE@  pcre32_ucd.c \
        !          1152: @WITH_PCRE32_TRUE@  pcre32_utf32_utils.c \
        !          1153: @WITH_PCRE32_TRUE@  pcre32_valid_utf32.c \
        !          1154: @WITH_PCRE32_TRUE@  pcre32_version.c \
        !          1155: @WITH_PCRE32_TRUE@  pcre32_xclass.c
        !          1156: 
        !          1157: @WITH_PCRE32_TRUE@libpcre32_la_CFLAGS = $(VISIBILITY_CFLAGS) \
        !          1158: @WITH_PCRE32_TRUE@     $(AM_CFLAGS) $(am__append_9) \
        !          1159: @WITH_PCRE32_TRUE@     $(am__append_12)
        !          1160: @WITH_PCRE32_TRUE@libpcre32_la_LIBADD =
        !          1161: @WITH_PCRE32_TRUE@nodist_libpcre32_la_SOURCES = \
        !          1162: @WITH_PCRE32_TRUE@  pcre_chartables.c
        !          1163: 
1.1.1.2   misho    1164: @WITH_PCRE8_TRUE@libpcre_la_LDFLAGS = $(EXTRA_LIBPCRE_LDFLAGS)
                   1165: @WITH_PCRE16_TRUE@libpcre16_la_LDFLAGS = $(EXTRA_LIBPCRE16_LDFLAGS)
1.1.1.4 ! misho    1166: @WITH_PCRE32_TRUE@libpcre32_la_LDFLAGS = $(EXTRA_LIBPCRE32_LDFLAGS)
1.1       misho    1167: @WITH_JIT_TRUE@pcre_jit_test_SOURCES = pcre_jit_test.c
1.1.1.4 ! misho    1168: @WITH_JIT_TRUE@pcre_jit_test_CFLAGS = $(AM_CFLAGS) $(am__append_18)
        !          1169: @WITH_JIT_TRUE@pcre_jit_test_LDADD = $(am__append_15) $(am__append_16) \
        !          1170: @WITH_JIT_TRUE@        $(am__append_17) $(am__append_19)
1.1.1.2   misho    1171: @WITH_PCRE8_TRUE@libpcreposix_la_SOURCES = \
                   1172: @WITH_PCRE8_TRUE@  pcreposix.c
1.1       misho    1173: 
1.1.1.4 ! misho    1174: @WITH_PCRE8_TRUE@libpcreposix_la_CFLAGS = $(VISIBILITY_CFLAGS) \
        !          1175: @WITH_PCRE8_TRUE@      $(AM_CFLAGS) $(am__append_21)
1.1.1.2   misho    1176: @WITH_PCRE8_TRUE@libpcreposix_la_LDFLAGS = $(EXTRA_LIBPCREPOSIX_LDFLAGS)
                   1177: @WITH_PCRE8_TRUE@libpcreposix_la_LIBADD = libpcre.la
1.1       misho    1178: @WITH_PCRE_CPP_TRUE@libpcrecpp_la_SOURCES = \
                   1179: @WITH_PCRE_CPP_TRUE@  pcrecpp_internal.h \
                   1180: @WITH_PCRE_CPP_TRUE@  pcrecpp.cc \
                   1181: @WITH_PCRE_CPP_TRUE@  pcre_scanner.cc \
                   1182: @WITH_PCRE_CPP_TRUE@  pcre_stringpiece.cc
                   1183: 
1.1.1.4 ! misho    1184: @WITH_PCRE_CPP_TRUE@libpcrecpp_la_CXXFLAGS = $(VISIBILITY_CXXFLAGS) \
        !          1185: @WITH_PCRE_CPP_TRUE@   $(AM_CXXFLAGS) $(am__append_25)
1.1       misho    1186: @WITH_PCRE_CPP_TRUE@libpcrecpp_la_LDFLAGS = $(EXTRA_LIBPCRECPP_LDFLAGS)
                   1187: @WITH_PCRE_CPP_TRUE@libpcrecpp_la_LIBADD = libpcre.la
                   1188: @WITH_PCRE_CPP_TRUE@pcrecpp_unittest_SOURCES = pcrecpp_unittest.cc
1.1.1.4 ! misho    1189: @WITH_PCRE_CPP_TRUE@pcrecpp_unittest_CXXFLAGS = $(AM_CXXFLAGS)
        !          1190: @WITH_PCRE_CPP_TRUE@pcrecpp_unittest_LDADD = libpcrecpp.la \
        !          1191: @WITH_PCRE_CPP_TRUE@   $(am__append_26)
1.1       misho    1192: @WITH_PCRE_CPP_TRUE@pcre_scanner_unittest_SOURCES = pcre_scanner_unittest.cc
1.1.1.4 ! misho    1193: @WITH_PCRE_CPP_TRUE@pcre_scanner_unittest_CXXFLAGS = $(AM_CXXFLAGS)
        !          1194: @WITH_PCRE_CPP_TRUE@pcre_scanner_unittest_LDADD = libpcrecpp.la \
        !          1195: @WITH_PCRE_CPP_TRUE@   $(am__append_27)
1.1       misho    1196: @WITH_PCRE_CPP_TRUE@pcre_stringpiece_unittest_SOURCES = pcre_stringpiece_unittest.cc
1.1.1.4 ! misho    1197: @WITH_PCRE_CPP_TRUE@pcre_stringpiece_unittest_CXXFLAGS = $(AM_CXXFLAGS)
        !          1198: @WITH_PCRE_CPP_TRUE@pcre_stringpiece_unittest_LDADD = libpcrecpp.la \
        !          1199: @WITH_PCRE_CPP_TRUE@   $(am__append_28)
        !          1200: pcretest_SOURCES = pcretest.c $(am__append_29) $(am__append_31) \
        !          1201:        $(am__append_33)
        !          1202: pcretest_CFLAGS = $(AM_CFLAGS) $(am__append_35) $(am__append_36)
        !          1203: pcretest_LDADD = $(LIBREADLINE) $(am__append_30) $(am__append_32) \
        !          1204:        $(am__append_34) $(am__append_37)
1.1.1.2   misho    1205: @WITH_PCRE8_TRUE@pcregrep_SOURCES = pcregrep.c
1.1.1.4 ! misho    1206: @WITH_PCRE8_TRUE@pcregrep_CFLAGS = $(AM_CFLAGS) $(am__append_41)
1.1.1.3   misho    1207: @WITH_PCRE8_TRUE@pcregrep_LDADD = $(LIBZ) $(LIBBZ2) libpcre.la \
1.1.1.4 ! misho    1208: @WITH_PCRE8_TRUE@      libpcreposix.la $(am__append_42)
1.1       misho    1209: 
                   1210: # A PCRE user submitted the following addition, saying that it "will allow
                   1211: # anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a
                   1212: # nice DLL for Windows use". (It is used by the pcre.dll target.)
1.1.1.2   misho    1213: DLL_OBJS = pcre_byte_order.o pcre_compile.o pcre_config.o \
1.1       misho    1214:        pcre_dfa_exec.o pcre_exec.o pcre_fullinfo.o pcre_get.o \
1.1.1.2   misho    1215:        pcre_globals.o pcre_jit_compile.o pcre_maketables.o \
1.1       misho    1216:        pcre_newline.o pcre_ord2utf8.o pcre_refcount.o \
1.1.1.2   misho    1217:        pcre_study.o pcre_tables.o pcre_ucd.o \
                   1218:        pcre_valid_utf8.o pcre_version.o pcre_chartables.o \
1.1       misho    1219:        pcre_xclass.o
                   1220: 
                   1221: 
                   1222: # We have .pc files for pkg-config users.
                   1223: pkgconfigdir = $(libdir)/pkgconfig
1.1.1.4 ! misho    1224: pkgconfig_DATA = libpcre.pc libpcreposix.pc $(am__append_43) \
        !          1225:        $(am__append_44) $(am__append_45)
        !          1226: 
        !          1227: # Note that pcrecpp.3 is not in this list, but is included separately below.
1.1       misho    1228: dist_man_MANS = \
1.1.1.4 ! misho    1229:   doc/pcre-config.1 \
1.1       misho    1230:   doc/pcre.3 \
1.1.1.2   misho    1231:   doc/pcre16.3 \
1.1.1.4 ! misho    1232:   doc/pcre32.3 \
1.1       misho    1233:   doc/pcre_assign_jit_stack.3 \
                   1234:   doc/pcre_compile.3 \
                   1235:   doc/pcre_compile2.3 \
                   1236:   doc/pcre_config.3 \
                   1237:   doc/pcre_copy_named_substring.3 \
                   1238:   doc/pcre_copy_substring.3 \
                   1239:   doc/pcre_dfa_exec.3 \
                   1240:   doc/pcre_exec.3 \
                   1241:   doc/pcre_free_study.3 \
                   1242:   doc/pcre_free_substring.3 \
                   1243:   doc/pcre_free_substring_list.3 \
                   1244:   doc/pcre_fullinfo.3 \
                   1245:   doc/pcre_get_named_substring.3 \
                   1246:   doc/pcre_get_stringnumber.3 \
                   1247:   doc/pcre_get_stringtable_entries.3 \
                   1248:   doc/pcre_get_substring.3 \
                   1249:   doc/pcre_get_substring_list.3 \
1.1.1.4 ! misho    1250:   doc/pcre_jit_exec.3 \
1.1       misho    1251:   doc/pcre_jit_stack_alloc.3 \
                   1252:   doc/pcre_jit_stack_free.3 \
                   1253:   doc/pcre_maketables.3 \
1.1.1.2   misho    1254:   doc/pcre_pattern_to_host_byte_order.3 \
1.1       misho    1255:   doc/pcre_refcount.3 \
                   1256:   doc/pcre_study.3 \
1.1.1.2   misho    1257:   doc/pcre_utf16_to_host_byte_order.3 \
1.1.1.4 ! misho    1258:   doc/pcre_utf32_to_host_byte_order.3 \
1.1       misho    1259:   doc/pcre_version.3 \
                   1260:   doc/pcreapi.3 \
                   1261:   doc/pcrebuild.3 \
                   1262:   doc/pcrecallout.3 \
                   1263:   doc/pcrecompat.3 \
1.1.1.4 ! misho    1264:   doc/pcredemo.3 \
1.1       misho    1265:   doc/pcregrep.1 \
                   1266:   doc/pcrejit.3 \
                   1267:   doc/pcrelimits.3 \
                   1268:   doc/pcrematching.3 \
                   1269:   doc/pcrepartial.3 \
                   1270:   doc/pcrepattern.3 \
                   1271:   doc/pcreperform.3 \
                   1272:   doc/pcreposix.3 \
                   1273:   doc/pcreprecompile.3 \
                   1274:   doc/pcresample.3 \
                   1275:   doc/pcrestack.3 \
                   1276:   doc/pcresyntax.3 \
                   1277:   doc/pcretest.1 \
                   1278:   doc/pcreunicode.3
                   1279: 
                   1280: pcrecpp_man = doc/pcrecpp.3
                   1281: @WITH_PCRE_CPP_TRUE@man_MANS = $(pcrecpp_man)
1.1.1.4 ! misho    1282: 
        !          1283: # gcov/lcov code coverage reporting
        !          1284: 
        !          1285: # Coverage reporting targets:
        !          1286: #
        !          1287: # coverage: Create a coverage report from 'make check'
        !          1288: # coverage-baseline: Capture baseline coverage information
        !          1289: # coverage-reset: This zeros the coverage counters only
        !          1290: # coverage-report: This creates the coverage report only
        !          1291: # coverage-clean-report: This removes the generated coverage report
        !          1292: #   without cleaning the coverage data itself
        !          1293: # coverage-clean-data: This removes the captured coverage data without
        !          1294: #   removing the coverage files created at compile time (*.gcno)
        !          1295: # coverage-clean: This cleans all coverage data including the generated
        !          1296: #   coverage report.
        !          1297: @WITH_GCOV_TRUE@COVERAGE_TEST_NAME = $(PACKAGE)
        !          1298: @WITH_GCOV_TRUE@COVERAGE_NAME = $(PACKAGE)-$(VERSION)
        !          1299: @WITH_GCOV_TRUE@COVERAGE_OUTPUT_FILE = $(COVERAGE_NAME)-coverage.info
        !          1300: @WITH_GCOV_TRUE@COVERAGE_OUTPUT_DIR = $(COVERAGE_NAME)-coverage
        !          1301: @WITH_GCOV_TRUE@COVERAGE_LCOV_EXTRA_FLAGS =
        !          1302: @WITH_GCOV_TRUE@COVERAGE_GENHTML_EXTRA_FLAGS =
        !          1303: @WITH_GCOV_TRUE@coverage_quiet = $(coverage_quiet_$(V))
        !          1304: @WITH_GCOV_TRUE@coverage_quiet_ = $(coverage_quiet_$(AM_DEFAULT_VERBOSITY))
        !          1305: @WITH_GCOV_TRUE@coverage_quiet_0 = --quiet
1.1.1.2   misho    1306: all: $(BUILT_SOURCES) config.h
1.1       misho    1307:        $(MAKE) $(AM_MAKEFLAGS) all-am
                   1308: 
                   1309: .SUFFIXES:
1.1.1.4 ! misho    1310: .SUFFIXES: .c .cc .lo .log .o .obj .test .test$(EXEEXT) .trs
        !          1311: am--refresh: Makefile
1.1       misho    1312:        @:
                   1313: $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
                   1314:        @for dep in $?; do \
                   1315:          case '$(am__configure_deps)' in \
                   1316:            *$$dep*) \
                   1317:              echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
                   1318:              $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
                   1319:                && exit 0; \
                   1320:              exit 1;; \
                   1321:          esac; \
                   1322:        done; \
                   1323:        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
                   1324:        $(am__cd) $(top_srcdir) && \
                   1325:          $(AUTOMAKE) --gnu Makefile
                   1326: .PRECIOUS: Makefile
                   1327: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
                   1328:        @case '$?' in \
                   1329:          *config.status*) \
                   1330:            echo ' $(SHELL) ./config.status'; \
                   1331:            $(SHELL) ./config.status;; \
                   1332:          *) \
                   1333:            echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
                   1334:            cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
                   1335:        esac;
                   1336: 
                   1337: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
                   1338:        $(SHELL) ./config.status --recheck
                   1339: 
                   1340: $(top_srcdir)/configure:  $(am__configure_deps)
                   1341:        $(am__cd) $(srcdir) && $(AUTOCONF)
                   1342: $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
                   1343:        $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
                   1344: $(am__aclocal_m4_deps):
                   1345: 
                   1346: config.h: stamp-h1
1.1.1.4 ! misho    1347:        @if test ! -f $@; then rm -f stamp-h1; else :; fi
        !          1348:        @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
1.1       misho    1349: 
                   1350: stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
                   1351:        @rm -f stamp-h1
                   1352:        cd $(top_builddir) && $(SHELL) ./config.status config.h
                   1353: $(srcdir)/config.h.in:  $(am__configure_deps)
                   1354:        ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
                   1355:        rm -f stamp-h1
                   1356:        touch $@
                   1357: 
                   1358: distclean-hdr:
                   1359:        -rm -f config.h stamp-h1
                   1360: libpcre.pc: $(top_builddir)/config.status $(srcdir)/libpcre.pc.in
                   1361:        cd $(top_builddir) && $(SHELL) ./config.status $@
1.1.1.2   misho    1362: libpcre16.pc: $(top_builddir)/config.status $(srcdir)/libpcre16.pc.in
                   1363:        cd $(top_builddir) && $(SHELL) ./config.status $@
1.1.1.4 ! misho    1364: libpcre32.pc: $(top_builddir)/config.status $(srcdir)/libpcre32.pc.in
        !          1365:        cd $(top_builddir) && $(SHELL) ./config.status $@
1.1       misho    1366: libpcreposix.pc: $(top_builddir)/config.status $(srcdir)/libpcreposix.pc.in
                   1367:        cd $(top_builddir) && $(SHELL) ./config.status $@
                   1368: libpcrecpp.pc: $(top_builddir)/config.status $(srcdir)/libpcrecpp.pc.in
                   1369:        cd $(top_builddir) && $(SHELL) ./config.status $@
                   1370: pcre-config: $(top_builddir)/config.status $(srcdir)/pcre-config.in
                   1371:        cd $(top_builddir) && $(SHELL) ./config.status $@
                   1372: pcre.h: $(top_builddir)/config.status $(srcdir)/pcre.h.in
                   1373:        cd $(top_builddir) && $(SHELL) ./config.status $@
                   1374: pcre_stringpiece.h: $(top_builddir)/config.status $(srcdir)/pcre_stringpiece.h.in
                   1375:        cd $(top_builddir) && $(SHELL) ./config.status $@
                   1376: pcrecpparg.h: $(top_builddir)/config.status $(srcdir)/pcrecpparg.h.in
                   1377:        cd $(top_builddir) && $(SHELL) ./config.status $@
1.1.1.4 ! misho    1378: 
1.1       misho    1379: install-libLTLIBRARIES: $(lib_LTLIBRARIES)
                   1380:        @$(NORMAL_INSTALL)
                   1381:        @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
                   1382:        list2=; for p in $$list; do \
                   1383:          if test -f $$p; then \
                   1384:            list2="$$list2 $$p"; \
                   1385:          else :; fi; \
                   1386:        done; \
                   1387:        test -z "$$list2" || { \
1.1.1.4 ! misho    1388:          echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
        !          1389:          $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
1.1       misho    1390:          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
                   1391:          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
                   1392:        }
                   1393: 
                   1394: uninstall-libLTLIBRARIES:
                   1395:        @$(NORMAL_UNINSTALL)
                   1396:        @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
                   1397:        for p in $$list; do \
                   1398:          $(am__strip_dir) \
                   1399:          echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
                   1400:          $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
                   1401:        done
                   1402: 
                   1403: clean-libLTLIBRARIES:
                   1404:        -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
1.1.1.4 ! misho    1405:        @list='$(lib_LTLIBRARIES)'; \
        !          1406:        locs=`for p in $$list; do echo $$p; done | \
        !          1407:              sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
        !          1408:              sort -u`; \
        !          1409:        test -z "$$locs" || { \
        !          1410:          echo rm -f $${locs}; \
        !          1411:          rm -f $${locs}; \
        !          1412:        }
        !          1413: 
        !          1414: libpcre.la: $(libpcre_la_OBJECTS) $(libpcre_la_DEPENDENCIES) $(EXTRA_libpcre_la_DEPENDENCIES)
1.1.1.2   misho    1415:        $(AM_V_CCLD)$(libpcre_la_LINK) $(am_libpcre_la_rpath) $(libpcre_la_OBJECTS) $(libpcre_la_LIBADD) $(LIBS)
1.1.1.4 ! misho    1416: 
        !          1417: libpcre16.la: $(libpcre16_la_OBJECTS) $(libpcre16_la_DEPENDENCIES) $(EXTRA_libpcre16_la_DEPENDENCIES)
1.1.1.2   misho    1418:        $(AM_V_CCLD)$(libpcre16_la_LINK) $(am_libpcre16_la_rpath) $(libpcre16_la_OBJECTS) $(libpcre16_la_LIBADD) $(LIBS)
1.1.1.4 ! misho    1419: 
        !          1420: libpcre32.la: $(libpcre32_la_OBJECTS) $(libpcre32_la_DEPENDENCIES) $(EXTRA_libpcre32_la_DEPENDENCIES)
        !          1421:        $(AM_V_CCLD)$(libpcre32_la_LINK) $(am_libpcre32_la_rpath) $(libpcre32_la_OBJECTS) $(libpcre32_la_LIBADD) $(LIBS)
        !          1422: 
        !          1423: libpcrecpp.la: $(libpcrecpp_la_OBJECTS) $(libpcrecpp_la_DEPENDENCIES) $(EXTRA_libpcrecpp_la_DEPENDENCIES)
1.1.1.2   misho    1424:        $(AM_V_CXXLD)$(libpcrecpp_la_LINK) $(am_libpcrecpp_la_rpath) $(libpcrecpp_la_OBJECTS) $(libpcrecpp_la_LIBADD) $(LIBS)
1.1.1.4 ! misho    1425: 
        !          1426: libpcreposix.la: $(libpcreposix_la_OBJECTS) $(libpcreposix_la_DEPENDENCIES) $(EXTRA_libpcreposix_la_DEPENDENCIES)
1.1.1.2   misho    1427:        $(AM_V_CCLD)$(libpcreposix_la_LINK) $(am_libpcreposix_la_rpath) $(libpcreposix_la_OBJECTS) $(libpcreposix_la_LIBADD) $(LIBS)
1.1       misho    1428: install-binPROGRAMS: $(bin_PROGRAMS)
                   1429:        @$(NORMAL_INSTALL)
                   1430:        @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
1.1.1.4 ! misho    1431:        if test -n "$$list"; then \
        !          1432:          echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
        !          1433:          $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
        !          1434:        fi; \
1.1       misho    1435:        for p in $$list; do echo "$$p $$p"; done | \
                   1436:        sed 's/$(EXEEXT)$$//' | \
1.1.1.4 ! misho    1437:        while read p p1; do if test -f $$p \
        !          1438:         || test -f $$p1 \
        !          1439:          ; then echo "$$p"; echo "$$p"; else :; fi; \
1.1       misho    1440:        done | \
1.1.1.4 ! misho    1441:        sed -e 'p;s,.*/,,;n;h' \
        !          1442:            -e 's|.*|.|' \
1.1       misho    1443:            -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
                   1444:        sed 'N;N;N;s,\n, ,g' | \
                   1445:        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
                   1446:          { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
                   1447:            if ($$2 == $$4) files[d] = files[d] " " $$1; \
                   1448:            else { print "f", $$3 "/" $$4, $$1; } } \
                   1449:          END { for (d in files) print "f", d, files[d] }' | \
                   1450:        while read type dir files; do \
                   1451:            if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
                   1452:            test -z "$$files" || { \
                   1453:            echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
                   1454:            $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
                   1455:            } \
                   1456:        ; done
                   1457: 
                   1458: uninstall-binPROGRAMS:
                   1459:        @$(NORMAL_UNINSTALL)
                   1460:        @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
                   1461:        files=`for p in $$list; do echo "$$p"; done | \
                   1462:          sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
1.1.1.4 ! misho    1463:              -e 's/$$/$(EXEEXT)/' \
        !          1464:        `; \
1.1       misho    1465:        test -n "$$list" || exit 0; \
                   1466:        echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
                   1467:        cd "$(DESTDIR)$(bindir)" && rm -f $$files
                   1468: 
                   1469: clean-binPROGRAMS:
                   1470:        @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
                   1471:        echo " rm -f" $$list; \
                   1472:        rm -f $$list || exit $$?; \
                   1473:        test -n "$(EXEEXT)" || exit 0; \
                   1474:        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
                   1475:        echo " rm -f" $$list; \
                   1476:        rm -f $$list
                   1477: 
                   1478: clean-noinstPROGRAMS:
                   1479:        @list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
                   1480:        echo " rm -f" $$list; \
                   1481:        rm -f $$list || exit $$?; \
                   1482:        test -n "$(EXEEXT)" || exit 0; \
                   1483:        list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
                   1484:        echo " rm -f" $$list; \
                   1485:        rm -f $$list
1.1.1.4 ! misho    1486: 
        !          1487: dftables$(EXEEXT): $(dftables_OBJECTS) $(dftables_DEPENDENCIES) $(EXTRA_dftables_DEPENDENCIES)
1.1       misho    1488:        @rm -f dftables$(EXEEXT)
1.1.1.2   misho    1489:        $(AM_V_CCLD)$(LINK) $(dftables_OBJECTS) $(dftables_LDADD) $(LIBS)
1.1.1.4 ! misho    1490: 
        !          1491: pcre_jit_test$(EXEEXT): $(pcre_jit_test_OBJECTS) $(pcre_jit_test_DEPENDENCIES) $(EXTRA_pcre_jit_test_DEPENDENCIES)
1.1       misho    1492:        @rm -f pcre_jit_test$(EXEEXT)
1.1.1.4 ! misho    1493:        $(AM_V_CCLD)$(pcre_jit_test_LINK) $(pcre_jit_test_OBJECTS) $(pcre_jit_test_LDADD) $(LIBS)
        !          1494: 
        !          1495: pcre_scanner_unittest$(EXEEXT): $(pcre_scanner_unittest_OBJECTS) $(pcre_scanner_unittest_DEPENDENCIES) $(EXTRA_pcre_scanner_unittest_DEPENDENCIES)
1.1       misho    1496:        @rm -f pcre_scanner_unittest$(EXEEXT)
1.1.1.4 ! misho    1497:        $(AM_V_CXXLD)$(pcre_scanner_unittest_LINK) $(pcre_scanner_unittest_OBJECTS) $(pcre_scanner_unittest_LDADD) $(LIBS)
        !          1498: 
        !          1499: pcre_stringpiece_unittest$(EXEEXT): $(pcre_stringpiece_unittest_OBJECTS) $(pcre_stringpiece_unittest_DEPENDENCIES) $(EXTRA_pcre_stringpiece_unittest_DEPENDENCIES)
1.1       misho    1500:        @rm -f pcre_stringpiece_unittest$(EXEEXT)
1.1.1.4 ! misho    1501:        $(AM_V_CXXLD)$(pcre_stringpiece_unittest_LINK) $(pcre_stringpiece_unittest_OBJECTS) $(pcre_stringpiece_unittest_LDADD) $(LIBS)
        !          1502: 
        !          1503: pcrecpp_unittest$(EXEEXT): $(pcrecpp_unittest_OBJECTS) $(pcrecpp_unittest_DEPENDENCIES) $(EXTRA_pcrecpp_unittest_DEPENDENCIES)
1.1       misho    1504:        @rm -f pcrecpp_unittest$(EXEEXT)
1.1.1.4 ! misho    1505:        $(AM_V_CXXLD)$(pcrecpp_unittest_LINK) $(pcrecpp_unittest_OBJECTS) $(pcrecpp_unittest_LDADD) $(LIBS)
        !          1506: 
        !          1507: pcregrep$(EXEEXT): $(pcregrep_OBJECTS) $(pcregrep_DEPENDENCIES) $(EXTRA_pcregrep_DEPENDENCIES)
1.1       misho    1508:        @rm -f pcregrep$(EXEEXT)
1.1.1.4 ! misho    1509:        $(AM_V_CCLD)$(pcregrep_LINK) $(pcregrep_OBJECTS) $(pcregrep_LDADD) $(LIBS)
        !          1510: 
        !          1511: pcretest$(EXEEXT): $(pcretest_OBJECTS) $(pcretest_DEPENDENCIES) $(EXTRA_pcretest_DEPENDENCIES)
1.1       misho    1512:        @rm -f pcretest$(EXEEXT)
1.1.1.4 ! misho    1513:        $(AM_V_CCLD)$(pcretest_LINK) $(pcretest_OBJECTS) $(pcretest_LDADD) $(LIBS)
1.1       misho    1514: install-binSCRIPTS: $(bin_SCRIPTS)
                   1515:        @$(NORMAL_INSTALL)
                   1516:        @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
1.1.1.4 ! misho    1517:        if test -n "$$list"; then \
        !          1518:          echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
        !          1519:          $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
        !          1520:        fi; \
1.1       misho    1521:        for p in $$list; do \
                   1522:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   1523:          if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
                   1524:        done | \
                   1525:        sed -e 'p;s,.*/,,;n' \
                   1526:            -e 'h;s|.*|.|' \
                   1527:            -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
                   1528:        $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
                   1529:          { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
                   1530:            if ($$2 == $$4) { files[d] = files[d] " " $$1; \
                   1531:              if (++n[d] == $(am__install_max)) { \
                   1532:                print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
                   1533:            else { print "f", d "/" $$4, $$1 } } \
                   1534:          END { for (d in files) print "f", d, files[d] }' | \
                   1535:        while read type dir files; do \
                   1536:             if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
                   1537:             test -z "$$files" || { \
                   1538:               echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
                   1539:               $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
                   1540:             } \
                   1541:        ; done
                   1542: 
                   1543: uninstall-binSCRIPTS:
                   1544:        @$(NORMAL_UNINSTALL)
                   1545:        @list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
                   1546:        files=`for p in $$list; do echo "$$p"; done | \
                   1547:               sed -e 's,.*/,,;$(transform)'`; \
1.1.1.4 ! misho    1548:        dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
1.1       misho    1549: 
                   1550: mostlyclean-compile:
                   1551:        -rm -f *.$(OBJEXT)
                   1552: 
                   1553: distclean-compile:
                   1554:        -rm -f *.tab.c
                   1555: 
                   1556: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dftables.Po@am__quote@
1.1.1.4 ! misho    1557: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_byte_order.Plo@am__quote@
        !          1558: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_chartables.Plo@am__quote@
        !          1559: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_compile.Plo@am__quote@
        !          1560: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_config.Plo@am__quote@
        !          1561: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_dfa_exec.Plo@am__quote@
        !          1562: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_exec.Plo@am__quote@
        !          1563: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_fullinfo.Plo@am__quote@
        !          1564: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_get.Plo@am__quote@
        !          1565: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_globals.Plo@am__quote@
        !          1566: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_jit_compile.Plo@am__quote@
        !          1567: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_maketables.Plo@am__quote@
        !          1568: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_newline.Plo@am__quote@
        !          1569: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_ord2utf16.Plo@am__quote@
        !          1570: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_refcount.Plo@am__quote@
        !          1571: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_string_utils.Plo@am__quote@
        !          1572: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_study.Plo@am__quote@
        !          1573: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_tables.Plo@am__quote@
        !          1574: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_ucd.Plo@am__quote@
        !          1575: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_utf16_utils.Plo@am__quote@
        !          1576: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_valid_utf16.Plo@am__quote@
        !          1577: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_version.Plo@am__quote@
        !          1578: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre16_xclass.Plo@am__quote@
        !          1579: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre16_la-pcre_chartables.Plo@am__quote@
        !          1580: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_byte_order.Plo@am__quote@
        !          1581: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_chartables.Plo@am__quote@
        !          1582: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_compile.Plo@am__quote@
        !          1583: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_config.Plo@am__quote@
        !          1584: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_dfa_exec.Plo@am__quote@
        !          1585: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_exec.Plo@am__quote@
        !          1586: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_fullinfo.Plo@am__quote@
        !          1587: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_get.Plo@am__quote@
        !          1588: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_globals.Plo@am__quote@
        !          1589: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_jit_compile.Plo@am__quote@
        !          1590: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_maketables.Plo@am__quote@
        !          1591: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_newline.Plo@am__quote@
        !          1592: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_ord2utf32.Plo@am__quote@
        !          1593: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_refcount.Plo@am__quote@
        !          1594: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_string_utils.Plo@am__quote@
        !          1595: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_study.Plo@am__quote@
        !          1596: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_tables.Plo@am__quote@
        !          1597: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_ucd.Plo@am__quote@
        !          1598: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_utf32_utils.Plo@am__quote@
        !          1599: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_valid_utf32.Plo@am__quote@
        !          1600: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_version.Plo@am__quote@
        !          1601: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre32_xclass.Plo@am__quote@
        !          1602: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre32_la-pcre_chartables.Plo@am__quote@
        !          1603: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_byte_order.Plo@am__quote@
        !          1604: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_chartables.Plo@am__quote@
        !          1605: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_compile.Plo@am__quote@
        !          1606: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_config.Plo@am__quote@
        !          1607: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_dfa_exec.Plo@am__quote@
        !          1608: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_exec.Plo@am__quote@
        !          1609: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_fullinfo.Plo@am__quote@
        !          1610: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_get.Plo@am__quote@
        !          1611: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_globals.Plo@am__quote@
        !          1612: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_jit_compile.Plo@am__quote@
        !          1613: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_maketables.Plo@am__quote@
        !          1614: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_newline.Plo@am__quote@
        !          1615: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_ord2utf8.Plo@am__quote@
        !          1616: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_refcount.Plo@am__quote@
        !          1617: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_string_utils.Plo@am__quote@
        !          1618: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_study.Plo@am__quote@
        !          1619: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_tables.Plo@am__quote@
        !          1620: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_ucd.Plo@am__quote@
        !          1621: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_valid_utf8.Plo@am__quote@
        !          1622: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_version.Plo@am__quote@
        !          1623: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcre_la-pcre_xclass.Plo@am__quote@
        !          1624: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcrecpp_la-pcre_scanner.Plo@am__quote@
        !          1625: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcrecpp_la-pcre_stringpiece.Plo@am__quote@
        !          1626: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcrecpp_la-pcrecpp.Plo@am__quote@
        !          1627: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpcreposix_la-pcreposix.Plo@am__quote@
        !          1628: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcre_jit_test-pcre_jit_test.Po@am__quote@
        !          1629: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Po@am__quote@
        !          1630: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Po@am__quote@
        !          1631: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Po@am__quote@
        !          1632: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcregrep-pcregrep.Po@am__quote@
        !          1633: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcretest-pcre16_printint.Po@am__quote@
        !          1634: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcretest-pcre32_printint.Po@am__quote@
        !          1635: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcretest-pcre_printint.Po@am__quote@
        !          1636: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pcretest-pcretest.Po@am__quote@
1.1       misho    1637: 
                   1638: .c.o:
1.1.1.2   misho    1639: @am__fastdepCC_TRUE@   $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
                   1640: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1.1.1.4 ! misho    1641: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1.1       misho    1642: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    1643: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(COMPILE) -c $<
1.1       misho    1644: 
                   1645: .c.obj:
1.1.1.2   misho    1646: @am__fastdepCC_TRUE@   $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
                   1647: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1.1.1.4 ! misho    1648: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1.1       misho    1649: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    1650: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'`
1.1       misho    1651: 
                   1652: .c.lo:
1.1.1.2   misho    1653: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
                   1654: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1.1.1.4 ! misho    1655: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
        !          1656: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1657: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
        !          1658: 
        !          1659: libpcre_la-pcre_byte_order.lo: pcre_byte_order.c
        !          1660: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_byte_order.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_byte_order.Tpo -c -o libpcre_la-pcre_byte_order.lo `test -f 'pcre_byte_order.c' || echo '$(srcdir)/'`pcre_byte_order.c
        !          1661: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_byte_order.Tpo $(DEPDIR)/libpcre_la-pcre_byte_order.Plo
        !          1662: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_byte_order.c' object='libpcre_la-pcre_byte_order.lo' libtool=yes @AMDEPBACKSLASH@
        !          1663: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1664: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_byte_order.lo `test -f 'pcre_byte_order.c' || echo '$(srcdir)/'`pcre_byte_order.c
        !          1665: 
        !          1666: libpcre_la-pcre_compile.lo: pcre_compile.c
        !          1667: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_compile.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_compile.Tpo -c -o libpcre_la-pcre_compile.lo `test -f 'pcre_compile.c' || echo '$(srcdir)/'`pcre_compile.c
        !          1668: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_compile.Tpo $(DEPDIR)/libpcre_la-pcre_compile.Plo
        !          1669: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_compile.c' object='libpcre_la-pcre_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          1670: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1671: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_compile.lo `test -f 'pcre_compile.c' || echo '$(srcdir)/'`pcre_compile.c
        !          1672: 
        !          1673: libpcre_la-pcre_config.lo: pcre_config.c
        !          1674: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_config.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_config.Tpo -c -o libpcre_la-pcre_config.lo `test -f 'pcre_config.c' || echo '$(srcdir)/'`pcre_config.c
        !          1675: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_config.Tpo $(DEPDIR)/libpcre_la-pcre_config.Plo
        !          1676: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_config.c' object='libpcre_la-pcre_config.lo' libtool=yes @AMDEPBACKSLASH@
        !          1677: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1678: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_config.lo `test -f 'pcre_config.c' || echo '$(srcdir)/'`pcre_config.c
        !          1679: 
        !          1680: libpcre_la-pcre_dfa_exec.lo: pcre_dfa_exec.c
        !          1681: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_dfa_exec.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_dfa_exec.Tpo -c -o libpcre_la-pcre_dfa_exec.lo `test -f 'pcre_dfa_exec.c' || echo '$(srcdir)/'`pcre_dfa_exec.c
        !          1682: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_dfa_exec.Tpo $(DEPDIR)/libpcre_la-pcre_dfa_exec.Plo
        !          1683: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_dfa_exec.c' object='libpcre_la-pcre_dfa_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          1684: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1685: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_dfa_exec.lo `test -f 'pcre_dfa_exec.c' || echo '$(srcdir)/'`pcre_dfa_exec.c
        !          1686: 
        !          1687: libpcre_la-pcre_exec.lo: pcre_exec.c
        !          1688: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_exec.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_exec.Tpo -c -o libpcre_la-pcre_exec.lo `test -f 'pcre_exec.c' || echo '$(srcdir)/'`pcre_exec.c
        !          1689: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_exec.Tpo $(DEPDIR)/libpcre_la-pcre_exec.Plo
        !          1690: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_exec.c' object='libpcre_la-pcre_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          1691: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1692: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_exec.lo `test -f 'pcre_exec.c' || echo '$(srcdir)/'`pcre_exec.c
        !          1693: 
        !          1694: libpcre_la-pcre_fullinfo.lo: pcre_fullinfo.c
        !          1695: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_fullinfo.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_fullinfo.Tpo -c -o libpcre_la-pcre_fullinfo.lo `test -f 'pcre_fullinfo.c' || echo '$(srcdir)/'`pcre_fullinfo.c
        !          1696: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_fullinfo.Tpo $(DEPDIR)/libpcre_la-pcre_fullinfo.Plo
        !          1697: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_fullinfo.c' object='libpcre_la-pcre_fullinfo.lo' libtool=yes @AMDEPBACKSLASH@
        !          1698: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1699: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_fullinfo.lo `test -f 'pcre_fullinfo.c' || echo '$(srcdir)/'`pcre_fullinfo.c
        !          1700: 
        !          1701: libpcre_la-pcre_get.lo: pcre_get.c
        !          1702: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_get.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_get.Tpo -c -o libpcre_la-pcre_get.lo `test -f 'pcre_get.c' || echo '$(srcdir)/'`pcre_get.c
        !          1703: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_get.Tpo $(DEPDIR)/libpcre_la-pcre_get.Plo
        !          1704: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_get.c' object='libpcre_la-pcre_get.lo' libtool=yes @AMDEPBACKSLASH@
        !          1705: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1706: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_get.lo `test -f 'pcre_get.c' || echo '$(srcdir)/'`pcre_get.c
        !          1707: 
        !          1708: libpcre_la-pcre_globals.lo: pcre_globals.c
        !          1709: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_globals.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_globals.Tpo -c -o libpcre_la-pcre_globals.lo `test -f 'pcre_globals.c' || echo '$(srcdir)/'`pcre_globals.c
        !          1710: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_globals.Tpo $(DEPDIR)/libpcre_la-pcre_globals.Plo
        !          1711: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_globals.c' object='libpcre_la-pcre_globals.lo' libtool=yes @AMDEPBACKSLASH@
        !          1712: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1713: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_globals.lo `test -f 'pcre_globals.c' || echo '$(srcdir)/'`pcre_globals.c
        !          1714: 
        !          1715: libpcre_la-pcre_jit_compile.lo: pcre_jit_compile.c
        !          1716: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_jit_compile.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_jit_compile.Tpo -c -o libpcre_la-pcre_jit_compile.lo `test -f 'pcre_jit_compile.c' || echo '$(srcdir)/'`pcre_jit_compile.c
        !          1717: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_jit_compile.Tpo $(DEPDIR)/libpcre_la-pcre_jit_compile.Plo
        !          1718: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_jit_compile.c' object='libpcre_la-pcre_jit_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          1719: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1720: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_jit_compile.lo `test -f 'pcre_jit_compile.c' || echo '$(srcdir)/'`pcre_jit_compile.c
        !          1721: 
        !          1722: libpcre_la-pcre_maketables.lo: pcre_maketables.c
        !          1723: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_maketables.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_maketables.Tpo -c -o libpcre_la-pcre_maketables.lo `test -f 'pcre_maketables.c' || echo '$(srcdir)/'`pcre_maketables.c
        !          1724: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_maketables.Tpo $(DEPDIR)/libpcre_la-pcre_maketables.Plo
        !          1725: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_maketables.c' object='libpcre_la-pcre_maketables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1726: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1727: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_maketables.lo `test -f 'pcre_maketables.c' || echo '$(srcdir)/'`pcre_maketables.c
        !          1728: 
        !          1729: libpcre_la-pcre_newline.lo: pcre_newline.c
        !          1730: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_newline.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_newline.Tpo -c -o libpcre_la-pcre_newline.lo `test -f 'pcre_newline.c' || echo '$(srcdir)/'`pcre_newline.c
        !          1731: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_newline.Tpo $(DEPDIR)/libpcre_la-pcre_newline.Plo
        !          1732: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_newline.c' object='libpcre_la-pcre_newline.lo' libtool=yes @AMDEPBACKSLASH@
        !          1733: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1734: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_newline.lo `test -f 'pcre_newline.c' || echo '$(srcdir)/'`pcre_newline.c
        !          1735: 
        !          1736: libpcre_la-pcre_ord2utf8.lo: pcre_ord2utf8.c
        !          1737: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_ord2utf8.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_ord2utf8.Tpo -c -o libpcre_la-pcre_ord2utf8.lo `test -f 'pcre_ord2utf8.c' || echo '$(srcdir)/'`pcre_ord2utf8.c
        !          1738: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_ord2utf8.Tpo $(DEPDIR)/libpcre_la-pcre_ord2utf8.Plo
        !          1739: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_ord2utf8.c' object='libpcre_la-pcre_ord2utf8.lo' libtool=yes @AMDEPBACKSLASH@
        !          1740: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1741: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_ord2utf8.lo `test -f 'pcre_ord2utf8.c' || echo '$(srcdir)/'`pcre_ord2utf8.c
        !          1742: 
        !          1743: libpcre_la-pcre_refcount.lo: pcre_refcount.c
        !          1744: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_refcount.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_refcount.Tpo -c -o libpcre_la-pcre_refcount.lo `test -f 'pcre_refcount.c' || echo '$(srcdir)/'`pcre_refcount.c
        !          1745: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_refcount.Tpo $(DEPDIR)/libpcre_la-pcre_refcount.Plo
        !          1746: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_refcount.c' object='libpcre_la-pcre_refcount.lo' libtool=yes @AMDEPBACKSLASH@
1.1       misho    1747: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    1748: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_refcount.lo `test -f 'pcre_refcount.c' || echo '$(srcdir)/'`pcre_refcount.c
        !          1749: 
        !          1750: libpcre_la-pcre_string_utils.lo: pcre_string_utils.c
        !          1751: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_string_utils.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_string_utils.Tpo -c -o libpcre_la-pcre_string_utils.lo `test -f 'pcre_string_utils.c' || echo '$(srcdir)/'`pcre_string_utils.c
        !          1752: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_string_utils.Tpo $(DEPDIR)/libpcre_la-pcre_string_utils.Plo
        !          1753: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_string_utils.c' object='libpcre_la-pcre_string_utils.lo' libtool=yes @AMDEPBACKSLASH@
        !          1754: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1755: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_string_utils.lo `test -f 'pcre_string_utils.c' || echo '$(srcdir)/'`pcre_string_utils.c
        !          1756: 
        !          1757: libpcre_la-pcre_study.lo: pcre_study.c
        !          1758: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_study.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_study.Tpo -c -o libpcre_la-pcre_study.lo `test -f 'pcre_study.c' || echo '$(srcdir)/'`pcre_study.c
        !          1759: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_study.Tpo $(DEPDIR)/libpcre_la-pcre_study.Plo
        !          1760: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_study.c' object='libpcre_la-pcre_study.lo' libtool=yes @AMDEPBACKSLASH@
        !          1761: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1762: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_study.lo `test -f 'pcre_study.c' || echo '$(srcdir)/'`pcre_study.c
        !          1763: 
        !          1764: libpcre_la-pcre_tables.lo: pcre_tables.c
        !          1765: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_tables.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_tables.Tpo -c -o libpcre_la-pcre_tables.lo `test -f 'pcre_tables.c' || echo '$(srcdir)/'`pcre_tables.c
        !          1766: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_tables.Tpo $(DEPDIR)/libpcre_la-pcre_tables.Plo
        !          1767: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_tables.c' object='libpcre_la-pcre_tables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1768: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1769: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_tables.lo `test -f 'pcre_tables.c' || echo '$(srcdir)/'`pcre_tables.c
        !          1770: 
        !          1771: libpcre_la-pcre_ucd.lo: pcre_ucd.c
        !          1772: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_ucd.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_ucd.Tpo -c -o libpcre_la-pcre_ucd.lo `test -f 'pcre_ucd.c' || echo '$(srcdir)/'`pcre_ucd.c
        !          1773: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_ucd.Tpo $(DEPDIR)/libpcre_la-pcre_ucd.Plo
        !          1774: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_ucd.c' object='libpcre_la-pcre_ucd.lo' libtool=yes @AMDEPBACKSLASH@
        !          1775: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1776: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_ucd.lo `test -f 'pcre_ucd.c' || echo '$(srcdir)/'`pcre_ucd.c
        !          1777: 
        !          1778: libpcre_la-pcre_valid_utf8.lo: pcre_valid_utf8.c
        !          1779: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_valid_utf8.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_valid_utf8.Tpo -c -o libpcre_la-pcre_valid_utf8.lo `test -f 'pcre_valid_utf8.c' || echo '$(srcdir)/'`pcre_valid_utf8.c
        !          1780: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_valid_utf8.Tpo $(DEPDIR)/libpcre_la-pcre_valid_utf8.Plo
        !          1781: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_valid_utf8.c' object='libpcre_la-pcre_valid_utf8.lo' libtool=yes @AMDEPBACKSLASH@
        !          1782: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1783: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_valid_utf8.lo `test -f 'pcre_valid_utf8.c' || echo '$(srcdir)/'`pcre_valid_utf8.c
        !          1784: 
        !          1785: libpcre_la-pcre_version.lo: pcre_version.c
        !          1786: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_version.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_version.Tpo -c -o libpcre_la-pcre_version.lo `test -f 'pcre_version.c' || echo '$(srcdir)/'`pcre_version.c
        !          1787: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_version.Tpo $(DEPDIR)/libpcre_la-pcre_version.Plo
        !          1788: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_version.c' object='libpcre_la-pcre_version.lo' libtool=yes @AMDEPBACKSLASH@
        !          1789: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1790: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_version.lo `test -f 'pcre_version.c' || echo '$(srcdir)/'`pcre_version.c
        !          1791: 
        !          1792: libpcre_la-pcre_xclass.lo: pcre_xclass.c
        !          1793: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_xclass.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_xclass.Tpo -c -o libpcre_la-pcre_xclass.lo `test -f 'pcre_xclass.c' || echo '$(srcdir)/'`pcre_xclass.c
        !          1794: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_xclass.Tpo $(DEPDIR)/libpcre_la-pcre_xclass.Plo
        !          1795: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_xclass.c' object='libpcre_la-pcre_xclass.lo' libtool=yes @AMDEPBACKSLASH@
        !          1796: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1797: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_xclass.lo `test -f 'pcre_xclass.c' || echo '$(srcdir)/'`pcre_xclass.c
        !          1798: 
        !          1799: libpcre_la-pcre_chartables.lo: pcre_chartables.c
        !          1800: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -MT libpcre_la-pcre_chartables.lo -MD -MP -MF $(DEPDIR)/libpcre_la-pcre_chartables.Tpo -c -o libpcre_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          1801: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre_la-pcre_chartables.Tpo $(DEPDIR)/libpcre_la-pcre_chartables.Plo
        !          1802: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_chartables.c' object='libpcre_la-pcre_chartables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1803: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1804: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre_la_CFLAGS) $(CFLAGS) -c -o libpcre_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          1805: 
        !          1806: libpcre16_la-pcre16_byte_order.lo: pcre16_byte_order.c
        !          1807: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_byte_order.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_byte_order.Tpo -c -o libpcre16_la-pcre16_byte_order.lo `test -f 'pcre16_byte_order.c' || echo '$(srcdir)/'`pcre16_byte_order.c
        !          1808: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_byte_order.Tpo $(DEPDIR)/libpcre16_la-pcre16_byte_order.Plo
        !          1809: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_byte_order.c' object='libpcre16_la-pcre16_byte_order.lo' libtool=yes @AMDEPBACKSLASH@
        !          1810: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1811: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_byte_order.lo `test -f 'pcre16_byte_order.c' || echo '$(srcdir)/'`pcre16_byte_order.c
        !          1812: 
        !          1813: libpcre16_la-pcre16_chartables.lo: pcre16_chartables.c
        !          1814: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_chartables.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_chartables.Tpo -c -o libpcre16_la-pcre16_chartables.lo `test -f 'pcre16_chartables.c' || echo '$(srcdir)/'`pcre16_chartables.c
        !          1815: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_chartables.Tpo $(DEPDIR)/libpcre16_la-pcre16_chartables.Plo
        !          1816: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_chartables.c' object='libpcre16_la-pcre16_chartables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1817: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1818: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_chartables.lo `test -f 'pcre16_chartables.c' || echo '$(srcdir)/'`pcre16_chartables.c
        !          1819: 
        !          1820: libpcre16_la-pcre16_compile.lo: pcre16_compile.c
        !          1821: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_compile.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_compile.Tpo -c -o libpcre16_la-pcre16_compile.lo `test -f 'pcre16_compile.c' || echo '$(srcdir)/'`pcre16_compile.c
        !          1822: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_compile.Tpo $(DEPDIR)/libpcre16_la-pcre16_compile.Plo
        !          1823: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_compile.c' object='libpcre16_la-pcre16_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          1824: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1825: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_compile.lo `test -f 'pcre16_compile.c' || echo '$(srcdir)/'`pcre16_compile.c
        !          1826: 
        !          1827: libpcre16_la-pcre16_config.lo: pcre16_config.c
        !          1828: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_config.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_config.Tpo -c -o libpcre16_la-pcre16_config.lo `test -f 'pcre16_config.c' || echo '$(srcdir)/'`pcre16_config.c
        !          1829: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_config.Tpo $(DEPDIR)/libpcre16_la-pcre16_config.Plo
        !          1830: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_config.c' object='libpcre16_la-pcre16_config.lo' libtool=yes @AMDEPBACKSLASH@
        !          1831: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1832: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_config.lo `test -f 'pcre16_config.c' || echo '$(srcdir)/'`pcre16_config.c
        !          1833: 
        !          1834: libpcre16_la-pcre16_dfa_exec.lo: pcre16_dfa_exec.c
        !          1835: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_dfa_exec.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_dfa_exec.Tpo -c -o libpcre16_la-pcre16_dfa_exec.lo `test -f 'pcre16_dfa_exec.c' || echo '$(srcdir)/'`pcre16_dfa_exec.c
        !          1836: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_dfa_exec.Tpo $(DEPDIR)/libpcre16_la-pcre16_dfa_exec.Plo
        !          1837: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_dfa_exec.c' object='libpcre16_la-pcre16_dfa_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          1838: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1839: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_dfa_exec.lo `test -f 'pcre16_dfa_exec.c' || echo '$(srcdir)/'`pcre16_dfa_exec.c
        !          1840: 
        !          1841: libpcre16_la-pcre16_exec.lo: pcre16_exec.c
        !          1842: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_exec.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_exec.Tpo -c -o libpcre16_la-pcre16_exec.lo `test -f 'pcre16_exec.c' || echo '$(srcdir)/'`pcre16_exec.c
        !          1843: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_exec.Tpo $(DEPDIR)/libpcre16_la-pcre16_exec.Plo
        !          1844: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_exec.c' object='libpcre16_la-pcre16_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          1845: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1846: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_exec.lo `test -f 'pcre16_exec.c' || echo '$(srcdir)/'`pcre16_exec.c
        !          1847: 
        !          1848: libpcre16_la-pcre16_fullinfo.lo: pcre16_fullinfo.c
        !          1849: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_fullinfo.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_fullinfo.Tpo -c -o libpcre16_la-pcre16_fullinfo.lo `test -f 'pcre16_fullinfo.c' || echo '$(srcdir)/'`pcre16_fullinfo.c
        !          1850: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_fullinfo.Tpo $(DEPDIR)/libpcre16_la-pcre16_fullinfo.Plo
        !          1851: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_fullinfo.c' object='libpcre16_la-pcre16_fullinfo.lo' libtool=yes @AMDEPBACKSLASH@
        !          1852: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1853: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_fullinfo.lo `test -f 'pcre16_fullinfo.c' || echo '$(srcdir)/'`pcre16_fullinfo.c
        !          1854: 
        !          1855: libpcre16_la-pcre16_get.lo: pcre16_get.c
        !          1856: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_get.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_get.Tpo -c -o libpcre16_la-pcre16_get.lo `test -f 'pcre16_get.c' || echo '$(srcdir)/'`pcre16_get.c
        !          1857: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_get.Tpo $(DEPDIR)/libpcre16_la-pcre16_get.Plo
        !          1858: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_get.c' object='libpcre16_la-pcre16_get.lo' libtool=yes @AMDEPBACKSLASH@
        !          1859: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1860: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_get.lo `test -f 'pcre16_get.c' || echo '$(srcdir)/'`pcre16_get.c
        !          1861: 
        !          1862: libpcre16_la-pcre16_globals.lo: pcre16_globals.c
        !          1863: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_globals.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_globals.Tpo -c -o libpcre16_la-pcre16_globals.lo `test -f 'pcre16_globals.c' || echo '$(srcdir)/'`pcre16_globals.c
        !          1864: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_globals.Tpo $(DEPDIR)/libpcre16_la-pcre16_globals.Plo
        !          1865: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_globals.c' object='libpcre16_la-pcre16_globals.lo' libtool=yes @AMDEPBACKSLASH@
        !          1866: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1867: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_globals.lo `test -f 'pcre16_globals.c' || echo '$(srcdir)/'`pcre16_globals.c
        !          1868: 
        !          1869: libpcre16_la-pcre16_jit_compile.lo: pcre16_jit_compile.c
        !          1870: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_jit_compile.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_jit_compile.Tpo -c -o libpcre16_la-pcre16_jit_compile.lo `test -f 'pcre16_jit_compile.c' || echo '$(srcdir)/'`pcre16_jit_compile.c
        !          1871: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_jit_compile.Tpo $(DEPDIR)/libpcre16_la-pcre16_jit_compile.Plo
        !          1872: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_jit_compile.c' object='libpcre16_la-pcre16_jit_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          1873: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1874: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_jit_compile.lo `test -f 'pcre16_jit_compile.c' || echo '$(srcdir)/'`pcre16_jit_compile.c
        !          1875: 
        !          1876: libpcre16_la-pcre16_maketables.lo: pcre16_maketables.c
        !          1877: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_maketables.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_maketables.Tpo -c -o libpcre16_la-pcre16_maketables.lo `test -f 'pcre16_maketables.c' || echo '$(srcdir)/'`pcre16_maketables.c
        !          1878: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_maketables.Tpo $(DEPDIR)/libpcre16_la-pcre16_maketables.Plo
        !          1879: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_maketables.c' object='libpcre16_la-pcre16_maketables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1880: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1881: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_maketables.lo `test -f 'pcre16_maketables.c' || echo '$(srcdir)/'`pcre16_maketables.c
        !          1882: 
        !          1883: libpcre16_la-pcre16_newline.lo: pcre16_newline.c
        !          1884: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_newline.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_newline.Tpo -c -o libpcre16_la-pcre16_newline.lo `test -f 'pcre16_newline.c' || echo '$(srcdir)/'`pcre16_newline.c
        !          1885: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_newline.Tpo $(DEPDIR)/libpcre16_la-pcre16_newline.Plo
        !          1886: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_newline.c' object='libpcre16_la-pcre16_newline.lo' libtool=yes @AMDEPBACKSLASH@
        !          1887: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1888: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_newline.lo `test -f 'pcre16_newline.c' || echo '$(srcdir)/'`pcre16_newline.c
        !          1889: 
        !          1890: libpcre16_la-pcre16_ord2utf16.lo: pcre16_ord2utf16.c
        !          1891: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_ord2utf16.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_ord2utf16.Tpo -c -o libpcre16_la-pcre16_ord2utf16.lo `test -f 'pcre16_ord2utf16.c' || echo '$(srcdir)/'`pcre16_ord2utf16.c
        !          1892: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_ord2utf16.Tpo $(DEPDIR)/libpcre16_la-pcre16_ord2utf16.Plo
        !          1893: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_ord2utf16.c' object='libpcre16_la-pcre16_ord2utf16.lo' libtool=yes @AMDEPBACKSLASH@
        !          1894: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1895: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_ord2utf16.lo `test -f 'pcre16_ord2utf16.c' || echo '$(srcdir)/'`pcre16_ord2utf16.c
        !          1896: 
        !          1897: libpcre16_la-pcre16_refcount.lo: pcre16_refcount.c
        !          1898: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_refcount.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_refcount.Tpo -c -o libpcre16_la-pcre16_refcount.lo `test -f 'pcre16_refcount.c' || echo '$(srcdir)/'`pcre16_refcount.c
        !          1899: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_refcount.Tpo $(DEPDIR)/libpcre16_la-pcre16_refcount.Plo
        !          1900: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_refcount.c' object='libpcre16_la-pcre16_refcount.lo' libtool=yes @AMDEPBACKSLASH@
        !          1901: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1902: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_refcount.lo `test -f 'pcre16_refcount.c' || echo '$(srcdir)/'`pcre16_refcount.c
        !          1903: 
        !          1904: libpcre16_la-pcre16_string_utils.lo: pcre16_string_utils.c
        !          1905: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_string_utils.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_string_utils.Tpo -c -o libpcre16_la-pcre16_string_utils.lo `test -f 'pcre16_string_utils.c' || echo '$(srcdir)/'`pcre16_string_utils.c
        !          1906: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_string_utils.Tpo $(DEPDIR)/libpcre16_la-pcre16_string_utils.Plo
        !          1907: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_string_utils.c' object='libpcre16_la-pcre16_string_utils.lo' libtool=yes @AMDEPBACKSLASH@
        !          1908: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1909: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_string_utils.lo `test -f 'pcre16_string_utils.c' || echo '$(srcdir)/'`pcre16_string_utils.c
        !          1910: 
        !          1911: libpcre16_la-pcre16_study.lo: pcre16_study.c
        !          1912: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_study.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_study.Tpo -c -o libpcre16_la-pcre16_study.lo `test -f 'pcre16_study.c' || echo '$(srcdir)/'`pcre16_study.c
        !          1913: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_study.Tpo $(DEPDIR)/libpcre16_la-pcre16_study.Plo
        !          1914: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_study.c' object='libpcre16_la-pcre16_study.lo' libtool=yes @AMDEPBACKSLASH@
        !          1915: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1916: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_study.lo `test -f 'pcre16_study.c' || echo '$(srcdir)/'`pcre16_study.c
        !          1917: 
        !          1918: libpcre16_la-pcre16_tables.lo: pcre16_tables.c
        !          1919: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_tables.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_tables.Tpo -c -o libpcre16_la-pcre16_tables.lo `test -f 'pcre16_tables.c' || echo '$(srcdir)/'`pcre16_tables.c
        !          1920: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_tables.Tpo $(DEPDIR)/libpcre16_la-pcre16_tables.Plo
        !          1921: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_tables.c' object='libpcre16_la-pcre16_tables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1922: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1923: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_tables.lo `test -f 'pcre16_tables.c' || echo '$(srcdir)/'`pcre16_tables.c
        !          1924: 
        !          1925: libpcre16_la-pcre16_ucd.lo: pcre16_ucd.c
        !          1926: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_ucd.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_ucd.Tpo -c -o libpcre16_la-pcre16_ucd.lo `test -f 'pcre16_ucd.c' || echo '$(srcdir)/'`pcre16_ucd.c
        !          1927: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_ucd.Tpo $(DEPDIR)/libpcre16_la-pcre16_ucd.Plo
        !          1928: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_ucd.c' object='libpcre16_la-pcre16_ucd.lo' libtool=yes @AMDEPBACKSLASH@
        !          1929: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1930: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_ucd.lo `test -f 'pcre16_ucd.c' || echo '$(srcdir)/'`pcre16_ucd.c
        !          1931: 
        !          1932: libpcre16_la-pcre16_utf16_utils.lo: pcre16_utf16_utils.c
        !          1933: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_utf16_utils.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_utf16_utils.Tpo -c -o libpcre16_la-pcre16_utf16_utils.lo `test -f 'pcre16_utf16_utils.c' || echo '$(srcdir)/'`pcre16_utf16_utils.c
        !          1934: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_utf16_utils.Tpo $(DEPDIR)/libpcre16_la-pcre16_utf16_utils.Plo
        !          1935: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_utf16_utils.c' object='libpcre16_la-pcre16_utf16_utils.lo' libtool=yes @AMDEPBACKSLASH@
        !          1936: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1937: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_utf16_utils.lo `test -f 'pcre16_utf16_utils.c' || echo '$(srcdir)/'`pcre16_utf16_utils.c
        !          1938: 
        !          1939: libpcre16_la-pcre16_valid_utf16.lo: pcre16_valid_utf16.c
        !          1940: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_valid_utf16.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_valid_utf16.Tpo -c -o libpcre16_la-pcre16_valid_utf16.lo `test -f 'pcre16_valid_utf16.c' || echo '$(srcdir)/'`pcre16_valid_utf16.c
        !          1941: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_valid_utf16.Tpo $(DEPDIR)/libpcre16_la-pcre16_valid_utf16.Plo
        !          1942: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_valid_utf16.c' object='libpcre16_la-pcre16_valid_utf16.lo' libtool=yes @AMDEPBACKSLASH@
        !          1943: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1944: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_valid_utf16.lo `test -f 'pcre16_valid_utf16.c' || echo '$(srcdir)/'`pcre16_valid_utf16.c
        !          1945: 
        !          1946: libpcre16_la-pcre16_version.lo: pcre16_version.c
        !          1947: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_version.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_version.Tpo -c -o libpcre16_la-pcre16_version.lo `test -f 'pcre16_version.c' || echo '$(srcdir)/'`pcre16_version.c
        !          1948: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_version.Tpo $(DEPDIR)/libpcre16_la-pcre16_version.Plo
        !          1949: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_version.c' object='libpcre16_la-pcre16_version.lo' libtool=yes @AMDEPBACKSLASH@
        !          1950: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1951: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_version.lo `test -f 'pcre16_version.c' || echo '$(srcdir)/'`pcre16_version.c
        !          1952: 
        !          1953: libpcre16_la-pcre16_xclass.lo: pcre16_xclass.c
        !          1954: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre16_xclass.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre16_xclass.Tpo -c -o libpcre16_la-pcre16_xclass.lo `test -f 'pcre16_xclass.c' || echo '$(srcdir)/'`pcre16_xclass.c
        !          1955: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre16_xclass.Tpo $(DEPDIR)/libpcre16_la-pcre16_xclass.Plo
        !          1956: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_xclass.c' object='libpcre16_la-pcre16_xclass.lo' libtool=yes @AMDEPBACKSLASH@
        !          1957: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1958: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre16_xclass.lo `test -f 'pcre16_xclass.c' || echo '$(srcdir)/'`pcre16_xclass.c
        !          1959: 
        !          1960: libpcre16_la-pcre_chartables.lo: pcre_chartables.c
        !          1961: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -MT libpcre16_la-pcre_chartables.lo -MD -MP -MF $(DEPDIR)/libpcre16_la-pcre_chartables.Tpo -c -o libpcre16_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          1962: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre16_la-pcre_chartables.Tpo $(DEPDIR)/libpcre16_la-pcre_chartables.Plo
        !          1963: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_chartables.c' object='libpcre16_la-pcre_chartables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1964: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1965: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre16_la_CFLAGS) $(CFLAGS) -c -o libpcre16_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          1966: 
        !          1967: libpcre32_la-pcre32_byte_order.lo: pcre32_byte_order.c
        !          1968: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_byte_order.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_byte_order.Tpo -c -o libpcre32_la-pcre32_byte_order.lo `test -f 'pcre32_byte_order.c' || echo '$(srcdir)/'`pcre32_byte_order.c
        !          1969: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_byte_order.Tpo $(DEPDIR)/libpcre32_la-pcre32_byte_order.Plo
        !          1970: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_byte_order.c' object='libpcre32_la-pcre32_byte_order.lo' libtool=yes @AMDEPBACKSLASH@
        !          1971: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1972: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_byte_order.lo `test -f 'pcre32_byte_order.c' || echo '$(srcdir)/'`pcre32_byte_order.c
        !          1973: 
        !          1974: libpcre32_la-pcre32_chartables.lo: pcre32_chartables.c
        !          1975: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_chartables.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_chartables.Tpo -c -o libpcre32_la-pcre32_chartables.lo `test -f 'pcre32_chartables.c' || echo '$(srcdir)/'`pcre32_chartables.c
        !          1976: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_chartables.Tpo $(DEPDIR)/libpcre32_la-pcre32_chartables.Plo
        !          1977: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_chartables.c' object='libpcre32_la-pcre32_chartables.lo' libtool=yes @AMDEPBACKSLASH@
        !          1978: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1979: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_chartables.lo `test -f 'pcre32_chartables.c' || echo '$(srcdir)/'`pcre32_chartables.c
        !          1980: 
        !          1981: libpcre32_la-pcre32_compile.lo: pcre32_compile.c
        !          1982: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_compile.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_compile.Tpo -c -o libpcre32_la-pcre32_compile.lo `test -f 'pcre32_compile.c' || echo '$(srcdir)/'`pcre32_compile.c
        !          1983: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_compile.Tpo $(DEPDIR)/libpcre32_la-pcre32_compile.Plo
        !          1984: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_compile.c' object='libpcre32_la-pcre32_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          1985: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1986: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_compile.lo `test -f 'pcre32_compile.c' || echo '$(srcdir)/'`pcre32_compile.c
        !          1987: 
        !          1988: libpcre32_la-pcre32_config.lo: pcre32_config.c
        !          1989: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_config.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_config.Tpo -c -o libpcre32_la-pcre32_config.lo `test -f 'pcre32_config.c' || echo '$(srcdir)/'`pcre32_config.c
        !          1990: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_config.Tpo $(DEPDIR)/libpcre32_la-pcre32_config.Plo
        !          1991: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_config.c' object='libpcre32_la-pcre32_config.lo' libtool=yes @AMDEPBACKSLASH@
        !          1992: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          1993: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_config.lo `test -f 'pcre32_config.c' || echo '$(srcdir)/'`pcre32_config.c
        !          1994: 
        !          1995: libpcre32_la-pcre32_dfa_exec.lo: pcre32_dfa_exec.c
        !          1996: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_dfa_exec.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_dfa_exec.Tpo -c -o libpcre32_la-pcre32_dfa_exec.lo `test -f 'pcre32_dfa_exec.c' || echo '$(srcdir)/'`pcre32_dfa_exec.c
        !          1997: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_dfa_exec.Tpo $(DEPDIR)/libpcre32_la-pcre32_dfa_exec.Plo
        !          1998: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_dfa_exec.c' object='libpcre32_la-pcre32_dfa_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          1999: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2000: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_dfa_exec.lo `test -f 'pcre32_dfa_exec.c' || echo '$(srcdir)/'`pcre32_dfa_exec.c
        !          2001: 
        !          2002: libpcre32_la-pcre32_exec.lo: pcre32_exec.c
        !          2003: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_exec.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_exec.Tpo -c -o libpcre32_la-pcre32_exec.lo `test -f 'pcre32_exec.c' || echo '$(srcdir)/'`pcre32_exec.c
        !          2004: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_exec.Tpo $(DEPDIR)/libpcre32_la-pcre32_exec.Plo
        !          2005: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_exec.c' object='libpcre32_la-pcre32_exec.lo' libtool=yes @AMDEPBACKSLASH@
        !          2006: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2007: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_exec.lo `test -f 'pcre32_exec.c' || echo '$(srcdir)/'`pcre32_exec.c
        !          2008: 
        !          2009: libpcre32_la-pcre32_fullinfo.lo: pcre32_fullinfo.c
        !          2010: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_fullinfo.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_fullinfo.Tpo -c -o libpcre32_la-pcre32_fullinfo.lo `test -f 'pcre32_fullinfo.c' || echo '$(srcdir)/'`pcre32_fullinfo.c
        !          2011: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_fullinfo.Tpo $(DEPDIR)/libpcre32_la-pcre32_fullinfo.Plo
        !          2012: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_fullinfo.c' object='libpcre32_la-pcre32_fullinfo.lo' libtool=yes @AMDEPBACKSLASH@
        !          2013: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2014: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_fullinfo.lo `test -f 'pcre32_fullinfo.c' || echo '$(srcdir)/'`pcre32_fullinfo.c
        !          2015: 
        !          2016: libpcre32_la-pcre32_get.lo: pcre32_get.c
        !          2017: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_get.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_get.Tpo -c -o libpcre32_la-pcre32_get.lo `test -f 'pcre32_get.c' || echo '$(srcdir)/'`pcre32_get.c
        !          2018: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_get.Tpo $(DEPDIR)/libpcre32_la-pcre32_get.Plo
        !          2019: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_get.c' object='libpcre32_la-pcre32_get.lo' libtool=yes @AMDEPBACKSLASH@
        !          2020: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2021: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_get.lo `test -f 'pcre32_get.c' || echo '$(srcdir)/'`pcre32_get.c
        !          2022: 
        !          2023: libpcre32_la-pcre32_globals.lo: pcre32_globals.c
        !          2024: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_globals.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_globals.Tpo -c -o libpcre32_la-pcre32_globals.lo `test -f 'pcre32_globals.c' || echo '$(srcdir)/'`pcre32_globals.c
        !          2025: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_globals.Tpo $(DEPDIR)/libpcre32_la-pcre32_globals.Plo
        !          2026: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_globals.c' object='libpcre32_la-pcre32_globals.lo' libtool=yes @AMDEPBACKSLASH@
        !          2027: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2028: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_globals.lo `test -f 'pcre32_globals.c' || echo '$(srcdir)/'`pcre32_globals.c
        !          2029: 
        !          2030: libpcre32_la-pcre32_jit_compile.lo: pcre32_jit_compile.c
        !          2031: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_jit_compile.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_jit_compile.Tpo -c -o libpcre32_la-pcre32_jit_compile.lo `test -f 'pcre32_jit_compile.c' || echo '$(srcdir)/'`pcre32_jit_compile.c
        !          2032: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_jit_compile.Tpo $(DEPDIR)/libpcre32_la-pcre32_jit_compile.Plo
        !          2033: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_jit_compile.c' object='libpcre32_la-pcre32_jit_compile.lo' libtool=yes @AMDEPBACKSLASH@
        !          2034: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2035: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_jit_compile.lo `test -f 'pcre32_jit_compile.c' || echo '$(srcdir)/'`pcre32_jit_compile.c
        !          2036: 
        !          2037: libpcre32_la-pcre32_maketables.lo: pcre32_maketables.c
        !          2038: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_maketables.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_maketables.Tpo -c -o libpcre32_la-pcre32_maketables.lo `test -f 'pcre32_maketables.c' || echo '$(srcdir)/'`pcre32_maketables.c
        !          2039: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_maketables.Tpo $(DEPDIR)/libpcre32_la-pcre32_maketables.Plo
        !          2040: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_maketables.c' object='libpcre32_la-pcre32_maketables.lo' libtool=yes @AMDEPBACKSLASH@
        !          2041: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2042: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_maketables.lo `test -f 'pcre32_maketables.c' || echo '$(srcdir)/'`pcre32_maketables.c
        !          2043: 
        !          2044: libpcre32_la-pcre32_newline.lo: pcre32_newline.c
        !          2045: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_newline.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_newline.Tpo -c -o libpcre32_la-pcre32_newline.lo `test -f 'pcre32_newline.c' || echo '$(srcdir)/'`pcre32_newline.c
        !          2046: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_newline.Tpo $(DEPDIR)/libpcre32_la-pcre32_newline.Plo
        !          2047: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_newline.c' object='libpcre32_la-pcre32_newline.lo' libtool=yes @AMDEPBACKSLASH@
        !          2048: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2049: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_newline.lo `test -f 'pcre32_newline.c' || echo '$(srcdir)/'`pcre32_newline.c
        !          2050: 
        !          2051: libpcre32_la-pcre32_ord2utf32.lo: pcre32_ord2utf32.c
        !          2052: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_ord2utf32.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_ord2utf32.Tpo -c -o libpcre32_la-pcre32_ord2utf32.lo `test -f 'pcre32_ord2utf32.c' || echo '$(srcdir)/'`pcre32_ord2utf32.c
        !          2053: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_ord2utf32.Tpo $(DEPDIR)/libpcre32_la-pcre32_ord2utf32.Plo
        !          2054: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_ord2utf32.c' object='libpcre32_la-pcre32_ord2utf32.lo' libtool=yes @AMDEPBACKSLASH@
        !          2055: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2056: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_ord2utf32.lo `test -f 'pcre32_ord2utf32.c' || echo '$(srcdir)/'`pcre32_ord2utf32.c
        !          2057: 
        !          2058: libpcre32_la-pcre32_refcount.lo: pcre32_refcount.c
        !          2059: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_refcount.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_refcount.Tpo -c -o libpcre32_la-pcre32_refcount.lo `test -f 'pcre32_refcount.c' || echo '$(srcdir)/'`pcre32_refcount.c
        !          2060: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_refcount.Tpo $(DEPDIR)/libpcre32_la-pcre32_refcount.Plo
        !          2061: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_refcount.c' object='libpcre32_la-pcre32_refcount.lo' libtool=yes @AMDEPBACKSLASH@
        !          2062: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2063: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_refcount.lo `test -f 'pcre32_refcount.c' || echo '$(srcdir)/'`pcre32_refcount.c
        !          2064: 
        !          2065: libpcre32_la-pcre32_string_utils.lo: pcre32_string_utils.c
        !          2066: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_string_utils.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_string_utils.Tpo -c -o libpcre32_la-pcre32_string_utils.lo `test -f 'pcre32_string_utils.c' || echo '$(srcdir)/'`pcre32_string_utils.c
        !          2067: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_string_utils.Tpo $(DEPDIR)/libpcre32_la-pcre32_string_utils.Plo
        !          2068: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_string_utils.c' object='libpcre32_la-pcre32_string_utils.lo' libtool=yes @AMDEPBACKSLASH@
        !          2069: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2070: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_string_utils.lo `test -f 'pcre32_string_utils.c' || echo '$(srcdir)/'`pcre32_string_utils.c
        !          2071: 
        !          2072: libpcre32_la-pcre32_study.lo: pcre32_study.c
        !          2073: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_study.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_study.Tpo -c -o libpcre32_la-pcre32_study.lo `test -f 'pcre32_study.c' || echo '$(srcdir)/'`pcre32_study.c
        !          2074: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_study.Tpo $(DEPDIR)/libpcre32_la-pcre32_study.Plo
        !          2075: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_study.c' object='libpcre32_la-pcre32_study.lo' libtool=yes @AMDEPBACKSLASH@
        !          2076: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2077: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_study.lo `test -f 'pcre32_study.c' || echo '$(srcdir)/'`pcre32_study.c
        !          2078: 
        !          2079: libpcre32_la-pcre32_tables.lo: pcre32_tables.c
        !          2080: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_tables.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_tables.Tpo -c -o libpcre32_la-pcre32_tables.lo `test -f 'pcre32_tables.c' || echo '$(srcdir)/'`pcre32_tables.c
        !          2081: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_tables.Tpo $(DEPDIR)/libpcre32_la-pcre32_tables.Plo
        !          2082: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_tables.c' object='libpcre32_la-pcre32_tables.lo' libtool=yes @AMDEPBACKSLASH@
        !          2083: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2084: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_tables.lo `test -f 'pcre32_tables.c' || echo '$(srcdir)/'`pcre32_tables.c
        !          2085: 
        !          2086: libpcre32_la-pcre32_ucd.lo: pcre32_ucd.c
        !          2087: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_ucd.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_ucd.Tpo -c -o libpcre32_la-pcre32_ucd.lo `test -f 'pcre32_ucd.c' || echo '$(srcdir)/'`pcre32_ucd.c
        !          2088: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_ucd.Tpo $(DEPDIR)/libpcre32_la-pcre32_ucd.Plo
        !          2089: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_ucd.c' object='libpcre32_la-pcre32_ucd.lo' libtool=yes @AMDEPBACKSLASH@
        !          2090: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2091: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_ucd.lo `test -f 'pcre32_ucd.c' || echo '$(srcdir)/'`pcre32_ucd.c
        !          2092: 
        !          2093: libpcre32_la-pcre32_utf32_utils.lo: pcre32_utf32_utils.c
        !          2094: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_utf32_utils.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_utf32_utils.Tpo -c -o libpcre32_la-pcre32_utf32_utils.lo `test -f 'pcre32_utf32_utils.c' || echo '$(srcdir)/'`pcre32_utf32_utils.c
        !          2095: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_utf32_utils.Tpo $(DEPDIR)/libpcre32_la-pcre32_utf32_utils.Plo
        !          2096: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_utf32_utils.c' object='libpcre32_la-pcre32_utf32_utils.lo' libtool=yes @AMDEPBACKSLASH@
        !          2097: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2098: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_utf32_utils.lo `test -f 'pcre32_utf32_utils.c' || echo '$(srcdir)/'`pcre32_utf32_utils.c
        !          2099: 
        !          2100: libpcre32_la-pcre32_valid_utf32.lo: pcre32_valid_utf32.c
        !          2101: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_valid_utf32.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_valid_utf32.Tpo -c -o libpcre32_la-pcre32_valid_utf32.lo `test -f 'pcre32_valid_utf32.c' || echo '$(srcdir)/'`pcre32_valid_utf32.c
        !          2102: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_valid_utf32.Tpo $(DEPDIR)/libpcre32_la-pcre32_valid_utf32.Plo
        !          2103: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_valid_utf32.c' object='libpcre32_la-pcre32_valid_utf32.lo' libtool=yes @AMDEPBACKSLASH@
        !          2104: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2105: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_valid_utf32.lo `test -f 'pcre32_valid_utf32.c' || echo '$(srcdir)/'`pcre32_valid_utf32.c
        !          2106: 
        !          2107: libpcre32_la-pcre32_version.lo: pcre32_version.c
        !          2108: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_version.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_version.Tpo -c -o libpcre32_la-pcre32_version.lo `test -f 'pcre32_version.c' || echo '$(srcdir)/'`pcre32_version.c
        !          2109: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_version.Tpo $(DEPDIR)/libpcre32_la-pcre32_version.Plo
        !          2110: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_version.c' object='libpcre32_la-pcre32_version.lo' libtool=yes @AMDEPBACKSLASH@
        !          2111: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2112: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_version.lo `test -f 'pcre32_version.c' || echo '$(srcdir)/'`pcre32_version.c
        !          2113: 
        !          2114: libpcre32_la-pcre32_xclass.lo: pcre32_xclass.c
        !          2115: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre32_xclass.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre32_xclass.Tpo -c -o libpcre32_la-pcre32_xclass.lo `test -f 'pcre32_xclass.c' || echo '$(srcdir)/'`pcre32_xclass.c
        !          2116: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre32_xclass.Tpo $(DEPDIR)/libpcre32_la-pcre32_xclass.Plo
        !          2117: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_xclass.c' object='libpcre32_la-pcre32_xclass.lo' libtool=yes @AMDEPBACKSLASH@
        !          2118: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2119: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre32_xclass.lo `test -f 'pcre32_xclass.c' || echo '$(srcdir)/'`pcre32_xclass.c
        !          2120: 
        !          2121: libpcre32_la-pcre_chartables.lo: pcre_chartables.c
        !          2122: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -MT libpcre32_la-pcre_chartables.lo -MD -MP -MF $(DEPDIR)/libpcre32_la-pcre_chartables.Tpo -c -o libpcre32_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          2123: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcre32_la-pcre_chartables.Tpo $(DEPDIR)/libpcre32_la-pcre_chartables.Plo
        !          2124: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_chartables.c' object='libpcre32_la-pcre_chartables.lo' libtool=yes @AMDEPBACKSLASH@
        !          2125: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2126: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcre32_la_CFLAGS) $(CFLAGS) -c -o libpcre32_la-pcre_chartables.lo `test -f 'pcre_chartables.c' || echo '$(srcdir)/'`pcre_chartables.c
        !          2127: 
        !          2128: libpcreposix_la-pcreposix.lo: pcreposix.c
        !          2129: @am__fastdepCC_TRUE@   $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcreposix_la_CFLAGS) $(CFLAGS) -MT libpcreposix_la-pcreposix.lo -MD -MP -MF $(DEPDIR)/libpcreposix_la-pcreposix.Tpo -c -o libpcreposix_la-pcreposix.lo `test -f 'pcreposix.c' || echo '$(srcdir)/'`pcreposix.c
        !          2130: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/libpcreposix_la-pcreposix.Tpo $(DEPDIR)/libpcreposix_la-pcreposix.Plo
        !          2131: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcreposix.c' object='libpcreposix_la-pcreposix.lo' libtool=yes @AMDEPBACKSLASH@
        !          2132: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2133: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcreposix_la_CFLAGS) $(CFLAGS) -c -o libpcreposix_la-pcreposix.lo `test -f 'pcreposix.c' || echo '$(srcdir)/'`pcreposix.c
        !          2134: 
        !          2135: pcre_jit_test-pcre_jit_test.o: pcre_jit_test.c
        !          2136: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_jit_test_CFLAGS) $(CFLAGS) -MT pcre_jit_test-pcre_jit_test.o -MD -MP -MF $(DEPDIR)/pcre_jit_test-pcre_jit_test.Tpo -c -o pcre_jit_test-pcre_jit_test.o `test -f 'pcre_jit_test.c' || echo '$(srcdir)/'`pcre_jit_test.c
        !          2137: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_jit_test-pcre_jit_test.Tpo $(DEPDIR)/pcre_jit_test-pcre_jit_test.Po
        !          2138: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_jit_test.c' object='pcre_jit_test-pcre_jit_test.o' libtool=no @AMDEPBACKSLASH@
        !          2139: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2140: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_jit_test_CFLAGS) $(CFLAGS) -c -o pcre_jit_test-pcre_jit_test.o `test -f 'pcre_jit_test.c' || echo '$(srcdir)/'`pcre_jit_test.c
        !          2141: 
        !          2142: pcre_jit_test-pcre_jit_test.obj: pcre_jit_test.c
        !          2143: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_jit_test_CFLAGS) $(CFLAGS) -MT pcre_jit_test-pcre_jit_test.obj -MD -MP -MF $(DEPDIR)/pcre_jit_test-pcre_jit_test.Tpo -c -o pcre_jit_test-pcre_jit_test.obj `if test -f 'pcre_jit_test.c'; then $(CYGPATH_W) 'pcre_jit_test.c'; else $(CYGPATH_W) '$(srcdir)/pcre_jit_test.c'; fi`
        !          2144: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_jit_test-pcre_jit_test.Tpo $(DEPDIR)/pcre_jit_test-pcre_jit_test.Po
        !          2145: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_jit_test.c' object='pcre_jit_test-pcre_jit_test.obj' libtool=no @AMDEPBACKSLASH@
        !          2146: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2147: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_jit_test_CFLAGS) $(CFLAGS) -c -o pcre_jit_test-pcre_jit_test.obj `if test -f 'pcre_jit_test.c'; then $(CYGPATH_W) 'pcre_jit_test.c'; else $(CYGPATH_W) '$(srcdir)/pcre_jit_test.c'; fi`
        !          2148: 
        !          2149: pcregrep-pcregrep.o: pcregrep.c
        !          2150: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcregrep_CFLAGS) $(CFLAGS) -MT pcregrep-pcregrep.o -MD -MP -MF $(DEPDIR)/pcregrep-pcregrep.Tpo -c -o pcregrep-pcregrep.o `test -f 'pcregrep.c' || echo '$(srcdir)/'`pcregrep.c
        !          2151: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcregrep-pcregrep.Tpo $(DEPDIR)/pcregrep-pcregrep.Po
        !          2152: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcregrep.c' object='pcregrep-pcregrep.o' libtool=no @AMDEPBACKSLASH@
        !          2153: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2154: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcregrep_CFLAGS) $(CFLAGS) -c -o pcregrep-pcregrep.o `test -f 'pcregrep.c' || echo '$(srcdir)/'`pcregrep.c
        !          2155: 
        !          2156: pcregrep-pcregrep.obj: pcregrep.c
        !          2157: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcregrep_CFLAGS) $(CFLAGS) -MT pcregrep-pcregrep.obj -MD -MP -MF $(DEPDIR)/pcregrep-pcregrep.Tpo -c -o pcregrep-pcregrep.obj `if test -f 'pcregrep.c'; then $(CYGPATH_W) 'pcregrep.c'; else $(CYGPATH_W) '$(srcdir)/pcregrep.c'; fi`
        !          2158: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcregrep-pcregrep.Tpo $(DEPDIR)/pcregrep-pcregrep.Po
        !          2159: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcregrep.c' object='pcregrep-pcregrep.obj' libtool=no @AMDEPBACKSLASH@
        !          2160: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2161: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcregrep_CFLAGS) $(CFLAGS) -c -o pcregrep-pcregrep.obj `if test -f 'pcregrep.c'; then $(CYGPATH_W) 'pcregrep.c'; else $(CYGPATH_W) '$(srcdir)/pcregrep.c'; fi`
        !          2162: 
        !          2163: pcretest-pcretest.o: pcretest.c
        !          2164: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcretest.o -MD -MP -MF $(DEPDIR)/pcretest-pcretest.Tpo -c -o pcretest-pcretest.o `test -f 'pcretest.c' || echo '$(srcdir)/'`pcretest.c
        !          2165: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcretest.Tpo $(DEPDIR)/pcretest-pcretest.Po
        !          2166: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcretest.c' object='pcretest-pcretest.o' libtool=no @AMDEPBACKSLASH@
        !          2167: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2168: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcretest.o `test -f 'pcretest.c' || echo '$(srcdir)/'`pcretest.c
        !          2169: 
        !          2170: pcretest-pcretest.obj: pcretest.c
        !          2171: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcretest.obj -MD -MP -MF $(DEPDIR)/pcretest-pcretest.Tpo -c -o pcretest-pcretest.obj `if test -f 'pcretest.c'; then $(CYGPATH_W) 'pcretest.c'; else $(CYGPATH_W) '$(srcdir)/pcretest.c'; fi`
        !          2172: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcretest.Tpo $(DEPDIR)/pcretest-pcretest.Po
        !          2173: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcretest.c' object='pcretest-pcretest.obj' libtool=no @AMDEPBACKSLASH@
        !          2174: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2175: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcretest.obj `if test -f 'pcretest.c'; then $(CYGPATH_W) 'pcretest.c'; else $(CYGPATH_W) '$(srcdir)/pcretest.c'; fi`
        !          2176: 
        !          2177: pcretest-pcre_printint.o: pcre_printint.c
        !          2178: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre_printint.o -MD -MP -MF $(DEPDIR)/pcretest-pcre_printint.Tpo -c -o pcretest-pcre_printint.o `test -f 'pcre_printint.c' || echo '$(srcdir)/'`pcre_printint.c
        !          2179: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre_printint.Tpo $(DEPDIR)/pcretest-pcre_printint.Po
        !          2180: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_printint.c' object='pcretest-pcre_printint.o' libtool=no @AMDEPBACKSLASH@
        !          2181: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2182: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre_printint.o `test -f 'pcre_printint.c' || echo '$(srcdir)/'`pcre_printint.c
        !          2183: 
        !          2184: pcretest-pcre_printint.obj: pcre_printint.c
        !          2185: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre_printint.obj -MD -MP -MF $(DEPDIR)/pcretest-pcre_printint.Tpo -c -o pcretest-pcre_printint.obj `if test -f 'pcre_printint.c'; then $(CYGPATH_W) 'pcre_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre_printint.c'; fi`
        !          2186: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre_printint.Tpo $(DEPDIR)/pcretest-pcre_printint.Po
        !          2187: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre_printint.c' object='pcretest-pcre_printint.obj' libtool=no @AMDEPBACKSLASH@
        !          2188: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2189: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre_printint.obj `if test -f 'pcre_printint.c'; then $(CYGPATH_W) 'pcre_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre_printint.c'; fi`
        !          2190: 
        !          2191: pcretest-pcre16_printint.o: pcre16_printint.c
        !          2192: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre16_printint.o -MD -MP -MF $(DEPDIR)/pcretest-pcre16_printint.Tpo -c -o pcretest-pcre16_printint.o `test -f 'pcre16_printint.c' || echo '$(srcdir)/'`pcre16_printint.c
        !          2193: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre16_printint.Tpo $(DEPDIR)/pcretest-pcre16_printint.Po
        !          2194: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_printint.c' object='pcretest-pcre16_printint.o' libtool=no @AMDEPBACKSLASH@
        !          2195: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2196: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre16_printint.o `test -f 'pcre16_printint.c' || echo '$(srcdir)/'`pcre16_printint.c
        !          2197: 
        !          2198: pcretest-pcre16_printint.obj: pcre16_printint.c
        !          2199: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre16_printint.obj -MD -MP -MF $(DEPDIR)/pcretest-pcre16_printint.Tpo -c -o pcretest-pcre16_printint.obj `if test -f 'pcre16_printint.c'; then $(CYGPATH_W) 'pcre16_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre16_printint.c'; fi`
        !          2200: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre16_printint.Tpo $(DEPDIR)/pcretest-pcre16_printint.Po
        !          2201: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre16_printint.c' object='pcretest-pcre16_printint.obj' libtool=no @AMDEPBACKSLASH@
        !          2202: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2203: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre16_printint.obj `if test -f 'pcre16_printint.c'; then $(CYGPATH_W) 'pcre16_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre16_printint.c'; fi`
        !          2204: 
        !          2205: pcretest-pcre32_printint.o: pcre32_printint.c
        !          2206: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre32_printint.o -MD -MP -MF $(DEPDIR)/pcretest-pcre32_printint.Tpo -c -o pcretest-pcre32_printint.o `test -f 'pcre32_printint.c' || echo '$(srcdir)/'`pcre32_printint.c
        !          2207: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre32_printint.Tpo $(DEPDIR)/pcretest-pcre32_printint.Po
        !          2208: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_printint.c' object='pcretest-pcre32_printint.o' libtool=no @AMDEPBACKSLASH@
        !          2209: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2210: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre32_printint.o `test -f 'pcre32_printint.c' || echo '$(srcdir)/'`pcre32_printint.c
        !          2211: 
        !          2212: pcretest-pcre32_printint.obj: pcre32_printint.c
        !          2213: @am__fastdepCC_TRUE@   $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -MT pcretest-pcre32_printint.obj -MD -MP -MF $(DEPDIR)/pcretest-pcre32_printint.Tpo -c -o pcretest-pcre32_printint.obj `if test -f 'pcre32_printint.c'; then $(CYGPATH_W) 'pcre32_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre32_printint.c'; fi`
        !          2214: @am__fastdepCC_TRUE@   $(AM_V_at)$(am__mv) $(DEPDIR)/pcretest-pcre32_printint.Tpo $(DEPDIR)/pcretest-pcre32_printint.Po
        !          2215: @AMDEP_TRUE@@am__fastdepCC_FALSE@      $(AM_V_CC)source='pcre32_printint.c' object='pcretest-pcre32_printint.obj' libtool=no @AMDEPBACKSLASH@
        !          2216: @AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2217: @am__fastdepCC_FALSE@  $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcretest_CFLAGS) $(CFLAGS) -c -o pcretest-pcre32_printint.obj `if test -f 'pcre32_printint.c'; then $(CYGPATH_W) 'pcre32_printint.c'; else $(CYGPATH_W) '$(srcdir)/pcre32_printint.c'; fi`
1.1       misho    2218: 
                   2219: .cc.o:
1.1.1.2   misho    2220: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
                   2221: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1.1.1.4 ! misho    2222: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1.1       misho    2223: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    2224: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
1.1       misho    2225: 
                   2226: .cc.obj:
1.1.1.2   misho    2227: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
                   2228: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
1.1.1.4 ! misho    2229: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
1.1       misho    2230: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    2231: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
1.1       misho    2232: 
                   2233: .cc.lo:
1.1.1.2   misho    2234: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
                   2235: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1.1.1.4 ! misho    2236: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
        !          2237: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2238: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
        !          2239: 
        !          2240: libpcrecpp_la-pcrecpp.lo: pcrecpp.cc
        !          2241: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -MT libpcrecpp_la-pcrecpp.lo -MD -MP -MF $(DEPDIR)/libpcrecpp_la-pcrecpp.Tpo -c -o libpcrecpp_la-pcrecpp.lo `test -f 'pcrecpp.cc' || echo '$(srcdir)/'`pcrecpp.cc
        !          2242: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/libpcrecpp_la-pcrecpp.Tpo $(DEPDIR)/libpcrecpp_la-pcrecpp.Plo
        !          2243: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcrecpp.cc' object='libpcrecpp_la-pcrecpp.lo' libtool=yes @AMDEPBACKSLASH@
        !          2244: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2245: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -c -o libpcrecpp_la-pcrecpp.lo `test -f 'pcrecpp.cc' || echo '$(srcdir)/'`pcrecpp.cc
        !          2246: 
        !          2247: libpcrecpp_la-pcre_scanner.lo: pcre_scanner.cc
        !          2248: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -MT libpcrecpp_la-pcre_scanner.lo -MD -MP -MF $(DEPDIR)/libpcrecpp_la-pcre_scanner.Tpo -c -o libpcrecpp_la-pcre_scanner.lo `test -f 'pcre_scanner.cc' || echo '$(srcdir)/'`pcre_scanner.cc
        !          2249: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/libpcrecpp_la-pcre_scanner.Tpo $(DEPDIR)/libpcrecpp_la-pcre_scanner.Plo
        !          2250: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_scanner.cc' object='libpcrecpp_la-pcre_scanner.lo' libtool=yes @AMDEPBACKSLASH@
1.1       misho    2251: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1.1.1.4 ! misho    2252: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -c -o libpcrecpp_la-pcre_scanner.lo `test -f 'pcre_scanner.cc' || echo '$(srcdir)/'`pcre_scanner.cc
        !          2253: 
        !          2254: libpcrecpp_la-pcre_stringpiece.lo: pcre_stringpiece.cc
        !          2255: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -MT libpcrecpp_la-pcre_stringpiece.lo -MD -MP -MF $(DEPDIR)/libpcrecpp_la-pcre_stringpiece.Tpo -c -o libpcrecpp_la-pcre_stringpiece.lo `test -f 'pcre_stringpiece.cc' || echo '$(srcdir)/'`pcre_stringpiece.cc
        !          2256: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/libpcrecpp_la-pcre_stringpiece.Tpo $(DEPDIR)/libpcrecpp_la-pcre_stringpiece.Plo
        !          2257: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_stringpiece.cc' object='libpcrecpp_la-pcre_stringpiece.lo' libtool=yes @AMDEPBACKSLASH@
        !          2258: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2259: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libpcrecpp_la_CXXFLAGS) $(CXXFLAGS) -c -o libpcrecpp_la-pcre_stringpiece.lo `test -f 'pcre_stringpiece.cc' || echo '$(srcdir)/'`pcre_stringpiece.cc
        !          2260: 
        !          2261: pcre_scanner_unittest-pcre_scanner_unittest.o: pcre_scanner_unittest.cc
        !          2262: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_scanner_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcre_scanner_unittest-pcre_scanner_unittest.o -MD -MP -MF $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Tpo -c -o pcre_scanner_unittest-pcre_scanner_unittest.o `test -f 'pcre_scanner_unittest.cc' || echo '$(srcdir)/'`pcre_scanner_unittest.cc
        !          2263: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Tpo $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Po
        !          2264: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_scanner_unittest.cc' object='pcre_scanner_unittest-pcre_scanner_unittest.o' libtool=no @AMDEPBACKSLASH@
        !          2265: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2266: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_scanner_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcre_scanner_unittest-pcre_scanner_unittest.o `test -f 'pcre_scanner_unittest.cc' || echo '$(srcdir)/'`pcre_scanner_unittest.cc
        !          2267: 
        !          2268: pcre_scanner_unittest-pcre_scanner_unittest.obj: pcre_scanner_unittest.cc
        !          2269: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_scanner_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcre_scanner_unittest-pcre_scanner_unittest.obj -MD -MP -MF $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Tpo -c -o pcre_scanner_unittest-pcre_scanner_unittest.obj `if test -f 'pcre_scanner_unittest.cc'; then $(CYGPATH_W) 'pcre_scanner_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcre_scanner_unittest.cc'; fi`
        !          2270: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Tpo $(DEPDIR)/pcre_scanner_unittest-pcre_scanner_unittest.Po
        !          2271: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_scanner_unittest.cc' object='pcre_scanner_unittest-pcre_scanner_unittest.obj' libtool=no @AMDEPBACKSLASH@
        !          2272: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2273: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_scanner_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcre_scanner_unittest-pcre_scanner_unittest.obj `if test -f 'pcre_scanner_unittest.cc'; then $(CYGPATH_W) 'pcre_scanner_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcre_scanner_unittest.cc'; fi`
        !          2274: 
        !          2275: pcre_stringpiece_unittest-pcre_stringpiece_unittest.o: pcre_stringpiece_unittest.cc
        !          2276: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_stringpiece_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcre_stringpiece_unittest-pcre_stringpiece_unittest.o -MD -MP -MF $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Tpo -c -o pcre_stringpiece_unittest-pcre_stringpiece_unittest.o `test -f 'pcre_stringpiece_unittest.cc' || echo '$(srcdir)/'`pcre_stringpiece_unittest.cc
        !          2277: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Tpo $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Po
        !          2278: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_stringpiece_unittest.cc' object='pcre_stringpiece_unittest-pcre_stringpiece_unittest.o' libtool=no @AMDEPBACKSLASH@
        !          2279: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2280: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_stringpiece_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcre_stringpiece_unittest-pcre_stringpiece_unittest.o `test -f 'pcre_stringpiece_unittest.cc' || echo '$(srcdir)/'`pcre_stringpiece_unittest.cc
        !          2281: 
        !          2282: pcre_stringpiece_unittest-pcre_stringpiece_unittest.obj: pcre_stringpiece_unittest.cc
        !          2283: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_stringpiece_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcre_stringpiece_unittest-pcre_stringpiece_unittest.obj -MD -MP -MF $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Tpo -c -o pcre_stringpiece_unittest-pcre_stringpiece_unittest.obj `if test -f 'pcre_stringpiece_unittest.cc'; then $(CYGPATH_W) 'pcre_stringpiece_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcre_stringpiece_unittest.cc'; fi`
        !          2284: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Tpo $(DEPDIR)/pcre_stringpiece_unittest-pcre_stringpiece_unittest.Po
        !          2285: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcre_stringpiece_unittest.cc' object='pcre_stringpiece_unittest-pcre_stringpiece_unittest.obj' libtool=no @AMDEPBACKSLASH@
        !          2286: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2287: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcre_stringpiece_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcre_stringpiece_unittest-pcre_stringpiece_unittest.obj `if test -f 'pcre_stringpiece_unittest.cc'; then $(CYGPATH_W) 'pcre_stringpiece_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcre_stringpiece_unittest.cc'; fi`
        !          2288: 
        !          2289: pcrecpp_unittest-pcrecpp_unittest.o: pcrecpp_unittest.cc
        !          2290: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcrecpp_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcrecpp_unittest-pcrecpp_unittest.o -MD -MP -MF $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Tpo -c -o pcrecpp_unittest-pcrecpp_unittest.o `test -f 'pcrecpp_unittest.cc' || echo '$(srcdir)/'`pcrecpp_unittest.cc
        !          2291: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Tpo $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Po
        !          2292: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcrecpp_unittest.cc' object='pcrecpp_unittest-pcrecpp_unittest.o' libtool=no @AMDEPBACKSLASH@
        !          2293: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2294: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcrecpp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcrecpp_unittest-pcrecpp_unittest.o `test -f 'pcrecpp_unittest.cc' || echo '$(srcdir)/'`pcrecpp_unittest.cc
        !          2295: 
        !          2296: pcrecpp_unittest-pcrecpp_unittest.obj: pcrecpp_unittest.cc
        !          2297: @am__fastdepCXX_TRUE@  $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcrecpp_unittest_CXXFLAGS) $(CXXFLAGS) -MT pcrecpp_unittest-pcrecpp_unittest.obj -MD -MP -MF $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Tpo -c -o pcrecpp_unittest-pcrecpp_unittest.obj `if test -f 'pcrecpp_unittest.cc'; then $(CYGPATH_W) 'pcrecpp_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcrecpp_unittest.cc'; fi`
        !          2298: @am__fastdepCXX_TRUE@  $(AM_V_at)$(am__mv) $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Tpo $(DEPDIR)/pcrecpp_unittest-pcrecpp_unittest.Po
        !          2299: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     $(AM_V_CXX)source='pcrecpp_unittest.cc' object='pcrecpp_unittest-pcrecpp_unittest.obj' libtool=no @AMDEPBACKSLASH@
        !          2300: @AMDEP_TRUE@@am__fastdepCXX_FALSE@     DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
        !          2301: @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(pcrecpp_unittest_CXXFLAGS) $(CXXFLAGS) -c -o pcrecpp_unittest-pcrecpp_unittest.obj `if test -f 'pcrecpp_unittest.cc'; then $(CYGPATH_W) 'pcrecpp_unittest.cc'; else $(CYGPATH_W) '$(srcdir)/pcrecpp_unittest.cc'; fi`
1.1       misho    2302: 
                   2303: mostlyclean-libtool:
                   2304:        -rm -f *.lo
                   2305: 
                   2306: clean-libtool:
                   2307:        -rm -rf .libs _libs
                   2308: 
                   2309: distclean-libtool:
                   2310:        -rm -f libtool config.lt
                   2311: install-man1: $(dist_man_MANS) $(man_MANS)
                   2312:        @$(NORMAL_INSTALL)
1.1.1.4 ! misho    2313:        @list1=''; \
        !          2314:        list2='$(dist_man_MANS) $(man_MANS)'; \
        !          2315:        test -n "$(man1dir)" \
        !          2316:          && test -n "`echo $$list1$$list2`" \
        !          2317:          || exit 0; \
        !          2318:        echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
        !          2319:        $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
        !          2320:        { for i in $$list1; do echo "$$i"; done;  \
        !          2321:        if test -n "$$list2"; then \
        !          2322:          for i in $$list2; do echo "$$i"; done \
        !          2323:            | sed -n '/\.1[a-z]*$$/p'; \
        !          2324:        fi; \
1.1       misho    2325:        } | while read p; do \
                   2326:          if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
                   2327:          echo "$$d$$p"; echo "$$p"; \
                   2328:        done | \
                   2329:        sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
                   2330:              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
                   2331:        sed 'N;N;s,\n, ,g' | { \
                   2332:        list=; while read file base inst; do \
                   2333:          if test "$$base" = "$$inst"; then list="$$list $$file"; else \
                   2334:            echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
                   2335:            $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
                   2336:          fi; \
                   2337:        done; \
                   2338:        for i in $$list; do echo "$$i"; done | $(am__base_list) | \
                   2339:        while read files; do \
                   2340:          test -z "$$files" || { \
                   2341:            echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
                   2342:            $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
                   2343:        done; }
                   2344: 
                   2345: uninstall-man1:
                   2346:        @$(NORMAL_UNINSTALL)
                   2347:        @list=''; test -n "$(man1dir)" || exit 0; \
                   2348:        files=`{ for i in $$list; do echo "$$i"; done; \
                   2349:        l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
                   2350:          sed -n '/\.1[a-z]*$$/p'; \
                   2351:        } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
                   2352:              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
1.1.1.4 ! misho    2353:        dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
1.1       misho    2354: install-man3: $(dist_man_MANS) $(man_MANS)
                   2355:        @$(NORMAL_INSTALL)
1.1.1.4 ! misho    2356:        @list1=''; \
        !          2357:        list2='$(dist_man_MANS) $(man_MANS)'; \
        !          2358:        test -n "$(man3dir)" \
        !          2359:          && test -n "`echo $$list1$$list2`" \
        !          2360:          || exit 0; \
        !          2361:        echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
        !          2362:        $(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
        !          2363:        { for i in $$list1; do echo "$$i"; done;  \
        !          2364:        if test -n "$$list2"; then \
        !          2365:          for i in $$list2; do echo "$$i"; done \
        !          2366:            | sed -n '/\.3[a-z]*$$/p'; \
        !          2367:        fi; \
1.1       misho    2368:        } | while read p; do \
                   2369:          if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
                   2370:          echo "$$d$$p"; echo "$$p"; \
                   2371:        done | \
                   2372:        sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
                   2373:              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
                   2374:        sed 'N;N;s,\n, ,g' | { \
                   2375:        list=; while read file base inst; do \
                   2376:          if test "$$base" = "$$inst"; then list="$$list $$file"; else \
                   2377:            echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
                   2378:            $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst" || exit $$?; \
                   2379:          fi; \
                   2380:        done; \
                   2381:        for i in $$list; do echo "$$i"; done | $(am__base_list) | \
                   2382:        while read files; do \
                   2383:          test -z "$$files" || { \
                   2384:            echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man3dir)'"; \
                   2385:            $(INSTALL_DATA) $$files "$(DESTDIR)$(man3dir)" || exit $$?; }; \
                   2386:        done; }
                   2387: 
                   2388: uninstall-man3:
                   2389:        @$(NORMAL_UNINSTALL)
                   2390:        @list=''; test -n "$(man3dir)" || exit 0; \
                   2391:        files=`{ for i in $$list; do echo "$$i"; done; \
                   2392:        l2='$(dist_man_MANS) $(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
                   2393:          sed -n '/\.3[a-z]*$$/p'; \
                   2394:        } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
                   2395:              -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
1.1.1.4 ! misho    2396:        dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
1.1       misho    2397: install-dist_docDATA: $(dist_doc_DATA)
                   2398:        @$(NORMAL_INSTALL)
                   2399:        @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
1.1.1.4 ! misho    2400:        if test -n "$$list"; then \
        !          2401:          echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \
        !          2402:          $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \
        !          2403:        fi; \
1.1       misho    2404:        for p in $$list; do \
                   2405:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2406:          echo "$$d$$p"; \
                   2407:        done | $(am__base_list) | \
                   2408:        while read files; do \
                   2409:          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
                   2410:          $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
                   2411:        done
                   2412: 
                   2413: uninstall-dist_docDATA:
                   2414:        @$(NORMAL_UNINSTALL)
                   2415:        @list='$(dist_doc_DATA)'; test -n "$(docdir)" || list=; \
                   2416:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2417:        dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir)
1.1       misho    2418: install-dist_htmlDATA: $(dist_html_DATA)
                   2419:        @$(NORMAL_INSTALL)
                   2420:        @list='$(dist_html_DATA)'; test -n "$(htmldir)" || list=; \
1.1.1.4 ! misho    2421:        if test -n "$$list"; then \
        !          2422:          echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
        !          2423:          $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
        !          2424:        fi; \
1.1       misho    2425:        for p in $$list; do \
                   2426:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2427:          echo "$$d$$p"; \
                   2428:        done | $(am__base_list) | \
                   2429:        while read files; do \
                   2430:          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
                   2431:          $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
                   2432:        done
                   2433: 
                   2434: uninstall-dist_htmlDATA:
                   2435:        @$(NORMAL_UNINSTALL)
                   2436:        @list='$(dist_html_DATA)'; test -n "$(htmldir)" || list=; \
                   2437:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2438:        dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir)
1.1       misho    2439: install-htmlDATA: $(html_DATA)
                   2440:        @$(NORMAL_INSTALL)
                   2441:        @list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
1.1.1.4 ! misho    2442:        if test -n "$$list"; then \
        !          2443:          echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
        !          2444:          $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
        !          2445:        fi; \
1.1       misho    2446:        for p in $$list; do \
                   2447:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2448:          echo "$$d$$p"; \
                   2449:        done | $(am__base_list) | \
                   2450:        while read files; do \
                   2451:          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
                   2452:          $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
                   2453:        done
                   2454: 
                   2455: uninstall-htmlDATA:
                   2456:        @$(NORMAL_UNINSTALL)
                   2457:        @list='$(html_DATA)'; test -n "$(htmldir)" || list=; \
                   2458:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2459:        dir='$(DESTDIR)$(htmldir)'; $(am__uninstall_files_from_dir)
1.1       misho    2460: install-pkgconfigDATA: $(pkgconfig_DATA)
                   2461:        @$(NORMAL_INSTALL)
                   2462:        @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
1.1.1.4 ! misho    2463:        if test -n "$$list"; then \
        !          2464:          echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
        !          2465:          $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
        !          2466:        fi; \
1.1       misho    2467:        for p in $$list; do \
                   2468:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2469:          echo "$$d$$p"; \
                   2470:        done | $(am__base_list) | \
                   2471:        while read files; do \
                   2472:          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
                   2473:          $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
                   2474:        done
                   2475: 
                   2476: uninstall-pkgconfigDATA:
                   2477:        @$(NORMAL_UNINSTALL)
                   2478:        @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
                   2479:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2480:        dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
1.1       misho    2481: install-includeHEADERS: $(include_HEADERS)
                   2482:        @$(NORMAL_INSTALL)
                   2483:        @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
1.1.1.4 ! misho    2484:        if test -n "$$list"; then \
        !          2485:          echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
        !          2486:          $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
        !          2487:        fi; \
1.1       misho    2488:        for p in $$list; do \
                   2489:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2490:          echo "$$d$$p"; \
                   2491:        done | $(am__base_list) | \
                   2492:        while read files; do \
                   2493:          echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
                   2494:          $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
                   2495:        done
                   2496: 
                   2497: uninstall-includeHEADERS:
                   2498:        @$(NORMAL_UNINSTALL)
                   2499:        @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
                   2500:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2501:        dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
1.1       misho    2502: install-nodist_includeHEADERS: $(nodist_include_HEADERS)
                   2503:        @$(NORMAL_INSTALL)
                   2504:        @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
1.1.1.4 ! misho    2505:        if test -n "$$list"; then \
        !          2506:          echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
        !          2507:          $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
        !          2508:        fi; \
1.1       misho    2509:        for p in $$list; do \
                   2510:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
                   2511:          echo "$$d$$p"; \
                   2512:        done | $(am__base_list) | \
                   2513:        while read files; do \
                   2514:          echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
                   2515:          $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
                   2516:        done
                   2517: 
                   2518: uninstall-nodist_includeHEADERS:
                   2519:        @$(NORMAL_UNINSTALL)
                   2520:        @list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
                   2521:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.1.1.4 ! misho    2522:        dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
1.1       misho    2523: 
1.1.1.4 ! misho    2524: ID: $(am__tagged_files)
        !          2525:        $(am__define_uniq_tagged_files); mkid -fID $$unique
        !          2526: tags: tags-am
        !          2527: TAGS: tags
        !          2528: 
        !          2529: tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
1.1       misho    2530:        set x; \
                   2531:        here=`pwd`; \
1.1.1.4 ! misho    2532:        $(am__define_uniq_tagged_files); \
1.1       misho    2533:        shift; \
                   2534:        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
                   2535:          test -n "$$unique" || unique=$$empty_fix; \
                   2536:          if test $$# -gt 0; then \
                   2537:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
                   2538:              "$$@" $$unique; \
                   2539:          else \
                   2540:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
                   2541:              $$unique; \
                   2542:          fi; \
                   2543:        fi
1.1.1.4 ! misho    2544: ctags: ctags-am
        !          2545: 
        !          2546: CTAGS: ctags
        !          2547: ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
        !          2548:        $(am__define_uniq_tagged_files); \
1.1       misho    2549:        test -z "$(CTAGS_ARGS)$$unique" \
                   2550:          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
                   2551:             $$unique
                   2552: 
                   2553: GTAGS:
                   2554:        here=`$(am__cd) $(top_builddir) && pwd` \
                   2555:          && $(am__cd) $(top_srcdir) \
                   2556:          && gtags -i $(GTAGS_ARGS) "$$here"
1.1.1.4 ! misho    2557: cscope: cscope.files
        !          2558:        test ! -s cscope.files \
        !          2559:          || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
        !          2560: clean-cscope:
        !          2561:        -rm -f cscope.files
        !          2562: cscope.files: clean-cscope cscopelist
        !          2563: cscopelist: cscopelist-am
        !          2564: 
        !          2565: cscopelist-am: $(am__tagged_files)
        !          2566:        list='$(am__tagged_files)'; \
        !          2567:        case "$(srcdir)" in \
        !          2568:          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
        !          2569:          *) sdir=$(subdir)/$(srcdir) ;; \
        !          2570:        esac; \
        !          2571:        for i in $$list; do \
        !          2572:          if test -f "$$i"; then \
        !          2573:            echo "$(subdir)/$$i"; \
        !          2574:          else \
        !          2575:            echo "$$sdir/$$i"; \
        !          2576:          fi; \
        !          2577:        done >> $(top_builddir)/cscope.files
1.1       misho    2578: 
                   2579: distclean-tags:
                   2580:        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1.1.1.4 ! misho    2581:        -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
1.1       misho    2582: 
1.1.1.4 ! misho    2583: # Recover from deleted '.trs' file; this should ensure that
        !          2584: # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
        !          2585: # both 'foo.log' and 'foo.trs'.  Break the recipe in two subshells
        !          2586: # to avoid problems with "make -n".
        !          2587: .log.trs:
        !          2588:        rm -f $< $@
        !          2589:        $(MAKE) $(AM_MAKEFLAGS) $<
        !          2590: 
        !          2591: # Leading 'am--fnord' is there to ensure the list of targets does not
        !          2592: # expand to empty, as could happen e.g. with make check TESTS=''.
        !          2593: am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
        !          2594: am--force-recheck:
        !          2595:        @:
        !          2596: 
        !          2597: $(TEST_SUITE_LOG): $(TEST_LOGS)
        !          2598:        @$(am__set_TESTS_bases); \
        !          2599:        am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
        !          2600:        redo_bases=`for i in $$bases; do \
        !          2601:                      am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
        !          2602:                    done`; \
        !          2603:        if test -n "$$redo_bases"; then \
        !          2604:          redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
        !          2605:          redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
        !          2606:          if $(am__make_dryrun); then :; else \
        !          2607:            rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
1.1       misho    2608:          fi; \
1.1.1.4 ! misho    2609:        fi; \
        !          2610:        if test -n "$$am__remaking_logs"; then \
        !          2611:          echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
        !          2612:               "recursion detected" >&2; \
        !          2613:        else \
        !          2614:          am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
        !          2615:        fi; \
        !          2616:        if $(am__make_dryrun); then :; else \
        !          2617:          st=0;  \
        !          2618:          errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
        !          2619:          for i in $$redo_bases; do \
        !          2620:            test -f $$i.trs && test -r $$i.trs \
        !          2621:              || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
        !          2622:            test -f $$i.log && test -r $$i.log \
        !          2623:              || { echo "$$errmsg $$i.log" >&2; st=1; }; \
        !          2624:          done; \
        !          2625:          test $$st -eq 0 || exit 1; \
        !          2626:        fi
        !          2627:        @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
        !          2628:        ws='[   ]'; \
        !          2629:        results=`for b in $$bases; do echo $$b.trs; done`; \
        !          2630:        test -n "$$results" || results=/dev/null; \
        !          2631:        all=`  grep "^$$ws*:test-result:"           $$results | wc -l`; \
        !          2632:        pass=` grep "^$$ws*:test-result:$$ws*PASS"  $$results | wc -l`; \
        !          2633:        fail=` grep "^$$ws*:test-result:$$ws*FAIL"  $$results | wc -l`; \
        !          2634:        skip=` grep "^$$ws*:test-result:$$ws*SKIP"  $$results | wc -l`; \
        !          2635:        xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
        !          2636:        xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
        !          2637:        error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
        !          2638:        if test `expr $$fail + $$xpass + $$error` -eq 0; then \
        !          2639:          success=true; \
        !          2640:        else \
        !          2641:          success=false; \
        !          2642:        fi; \
        !          2643:        br='==================='; br=$$br$$br$$br$$br; \
        !          2644:        result_count () \
        !          2645:        { \
        !          2646:            if test x"$$1" = x"--maybe-color"; then \
        !          2647:              maybe_colorize=yes; \
        !          2648:            elif test x"$$1" = x"--no-color"; then \
        !          2649:              maybe_colorize=no; \
1.1       misho    2650:            else \
1.1.1.4 ! misho    2651:              echo "$@: invalid 'result_count' usage" >&2; exit 4; \
1.1       misho    2652:            fi; \
1.1.1.4 ! misho    2653:            shift; \
        !          2654:            desc=$$1 count=$$2; \
        !          2655:            if test $$maybe_colorize = yes && test $$count -gt 0; then \
        !          2656:              color_start=$$3 color_end=$$std; \
1.1       misho    2657:            else \
1.1.1.4 ! misho    2658:              color_start= color_end=; \
1.1       misho    2659:            fi; \
1.1.1.4 ! misho    2660:            echo "$${color_start}# $$desc $$count$${color_end}"; \
        !          2661:        }; \
        !          2662:        create_testsuite_report () \
        !          2663:        { \
        !          2664:          result_count $$1 "TOTAL:" $$all   "$$brg"; \
        !          2665:          result_count $$1 "PASS: " $$pass  "$$grn"; \
        !          2666:          result_count $$1 "SKIP: " $$skip  "$$blu"; \
        !          2667:          result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
        !          2668:          result_count $$1 "FAIL: " $$fail  "$$red"; \
        !          2669:          result_count $$1 "XPASS:" $$xpass "$$red"; \
        !          2670:          result_count $$1 "ERROR:" $$error "$$mgn"; \
        !          2671:        }; \
        !          2672:        {                                                               \
        !          2673:          echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" |       \
        !          2674:            $(am__rst_title);                                           \
        !          2675:          create_testsuite_report --no-color;                           \
        !          2676:          echo;                                                         \
        !          2677:          echo ".. contents:: :depth: 2";                               \
        !          2678:          echo;                                                         \
        !          2679:          for b in $$bases; do echo $$b; done                           \
        !          2680:            | $(am__create_global_log);                                 \
        !          2681:        } >$(TEST_SUITE_LOG).tmp || exit 1;                             \
        !          2682:        mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG);                     \
        !          2683:        if $$success; then                                              \
        !          2684:          col="$$grn";                                                  \
        !          2685:         else                                                           \
        !          2686:          col="$$red";                                                  \
        !          2687:          test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG);               \
        !          2688:        fi;                                                             \
        !          2689:        echo "$${col}$$br$${std}";                                      \
        !          2690:        echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}";   \
        !          2691:        echo "$${col}$$br$${std}";                                      \
        !          2692:        create_testsuite_report --maybe-color;                          \
        !          2693:        echo "$$col$$br$$std";                                          \
        !          2694:        if $$success; then :; else                                      \
        !          2695:          echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}";         \
        !          2696:          if test -n "$(PACKAGE_BUGREPORT)"; then                       \
        !          2697:            echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
        !          2698:          fi;                                                           \
        !          2699:          echo "$$col$$br$$std";                                        \
        !          2700:        fi;                                                             \
        !          2701:        $$success || exit 1
        !          2702: 
        !          2703: check-TESTS:
        !          2704:        @list='$(RECHECK_LOGS)';           test -z "$$list" || rm -f $$list
        !          2705:        @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
        !          2706:        @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
        !          2707:        @set +e; $(am__set_TESTS_bases); \
        !          2708:        log_list=`for i in $$bases; do echo $$i.log; done`; \
        !          2709:        trs_list=`for i in $$bases; do echo $$i.trs; done`; \
        !          2710:        log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
        !          2711:        $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
        !          2712:        exit $$?;
        !          2713: recheck: all $(check_SCRIPTS)
        !          2714:        @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
        !          2715:        @set +e; $(am__set_TESTS_bases); \
        !          2716:        bases=`for i in $$bases; do echo $$i; done \
        !          2717:                 | $(am__list_recheck_tests)` || exit 1; \
        !          2718:        log_list=`for i in $$bases; do echo $$i.log; done`; \
        !          2719:        log_list=`echo $$log_list`; \
        !          2720:        $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
        !          2721:                am__force_recheck=am--force-recheck \
        !          2722:                TEST_LOGS="$$log_list"; \
        !          2723:        exit $$?
        !          2724: pcre_jit_test.log: pcre_jit_test$(EXEEXT)
        !          2725:        @p='pcre_jit_test$(EXEEXT)'; \
        !          2726:        b='pcre_jit_test'; \
        !          2727:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2728:        --log-file $$b.log --trs-file $$b.trs \
        !          2729:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2730:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2731: pcrecpp_unittest.log: pcrecpp_unittest$(EXEEXT)
        !          2732:        @p='pcrecpp_unittest$(EXEEXT)'; \
        !          2733:        b='pcrecpp_unittest'; \
        !          2734:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2735:        --log-file $$b.log --trs-file $$b.trs \
        !          2736:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2737:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2738: pcre_scanner_unittest.log: pcre_scanner_unittest$(EXEEXT)
        !          2739:        @p='pcre_scanner_unittest$(EXEEXT)'; \
        !          2740:        b='pcre_scanner_unittest'; \
        !          2741:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2742:        --log-file $$b.log --trs-file $$b.trs \
        !          2743:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2744:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2745: pcre_stringpiece_unittest.log: pcre_stringpiece_unittest$(EXEEXT)
        !          2746:        @p='pcre_stringpiece_unittest$(EXEEXT)'; \
        !          2747:        b='pcre_stringpiece_unittest'; \
        !          2748:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2749:        --log-file $$b.log --trs-file $$b.trs \
        !          2750:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2751:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2752: RunTest.log: RunTest
        !          2753:        @p='RunTest'; \
        !          2754:        b='RunTest'; \
        !          2755:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2756:        --log-file $$b.log --trs-file $$b.trs \
        !          2757:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2758:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2759: RunGrepTest.log: RunGrepTest
        !          2760:        @p='RunGrepTest'; \
        !          2761:        b='RunGrepTest'; \
        !          2762:        $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
        !          2763:        --log-file $$b.log --trs-file $$b.trs \
        !          2764:        $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
        !          2765:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2766: .test.log:
        !          2767:        @p='$<'; \
        !          2768:        $(am__set_b); \
        !          2769:        $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
        !          2770:        --log-file $$b.log --trs-file $$b.trs \
        !          2771:        $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
        !          2772:        "$$tst" $(AM_TESTS_FD_REDIRECT)
        !          2773: @am__EXEEXT_TRUE@.test$(EXEEXT).log:
        !          2774: @am__EXEEXT_TRUE@      @p='$<'; \
        !          2775: @am__EXEEXT_TRUE@      $(am__set_b); \
        !          2776: @am__EXEEXT_TRUE@      $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
        !          2777: @am__EXEEXT_TRUE@      --log-file $$b.log --trs-file $$b.trs \
        !          2778: @am__EXEEXT_TRUE@      $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
        !          2779: @am__EXEEXT_TRUE@      "$$tst" $(AM_TESTS_FD_REDIRECT)
1.1       misho    2780: 
                   2781: distdir: $(DISTFILES)
                   2782:        $(am__remove_distdir)
                   2783:        test -d "$(distdir)" || mkdir "$(distdir)"
                   2784:        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
                   2785:        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
                   2786:        list='$(DISTFILES)'; \
                   2787:          dist_files=`for file in $$list; do echo $$file; done | \
                   2788:          sed -e "s|^$$srcdirstrip/||;t" \
                   2789:              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
                   2790:        case $$dist_files in \
                   2791:          */*) $(MKDIR_P) `echo "$$dist_files" | \
                   2792:                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
                   2793:                           sort -u` ;; \
                   2794:        esac; \
                   2795:        for file in $$dist_files; do \
                   2796:          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
                   2797:          if test -d $$d/$$file; then \
                   2798:            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
                   2799:            if test -d "$(distdir)/$$file"; then \
                   2800:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
                   2801:            fi; \
                   2802:            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
                   2803:              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
                   2804:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
                   2805:            fi; \
                   2806:            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
                   2807:          else \
                   2808:            test -f "$(distdir)/$$file" \
                   2809:            || cp -p $$d/$$file "$(distdir)/$$file" \
                   2810:            || exit 1; \
                   2811:          fi; \
                   2812:        done
                   2813:        -test -n "$(am__skip_mode_fix)" \
                   2814:        || find "$(distdir)" -type d ! -perm -755 \
                   2815:                -exec chmod u+rwx,go+rx {} \; -o \
                   2816:          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
                   2817:          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
                   2818:          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
                   2819:        || chmod -R a+r "$(distdir)"
                   2820: dist-gzip: distdir
                   2821:        tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
1.1.1.4 ! misho    2822:        $(am__post_remove_distdir)
1.1       misho    2823: dist-bzip2: distdir
1.1.1.4 ! misho    2824:        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
        !          2825:        $(am__post_remove_distdir)
1.1       misho    2826: 
1.1.1.4 ! misho    2827: dist-lzip: distdir
        !          2828:        tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
        !          2829:        $(am__post_remove_distdir)
1.1       misho    2830: 
                   2831: dist-xz: distdir
1.1.1.4 ! misho    2832:        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
        !          2833:        $(am__post_remove_distdir)
1.1       misho    2834: 
                   2835: dist-tarZ: distdir
                   2836:        tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
1.1.1.4 ! misho    2837:        $(am__post_remove_distdir)
1.1       misho    2838: 
                   2839: dist-shar: distdir
                   2840:        shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
1.1.1.4 ! misho    2841:        $(am__post_remove_distdir)
1.1       misho    2842: dist-zip: distdir
                   2843:        -rm -f $(distdir).zip
                   2844:        zip -rq $(distdir).zip $(distdir)
1.1.1.4 ! misho    2845:        $(am__post_remove_distdir)
1.1       misho    2846: 
1.1.1.4 ! misho    2847: dist dist-all:
        !          2848:        $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
        !          2849:        $(am__post_remove_distdir)
1.1       misho    2850: 
                   2851: # This target untars the dist file and tries a VPATH configuration.  Then
                   2852: # it guarantees that the distribution is self-contained by making another
                   2853: # tarfile.
                   2854: distcheck: dist
                   2855:        case '$(DIST_ARCHIVES)' in \
                   2856:        *.tar.gz*) \
                   2857:          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
                   2858:        *.tar.bz2*) \
                   2859:          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
1.1.1.4 ! misho    2860:        *.tar.lz*) \
        !          2861:          lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
1.1       misho    2862:        *.tar.xz*) \
                   2863:          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
                   2864:        *.tar.Z*) \
                   2865:          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
                   2866:        *.shar.gz*) \
                   2867:          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
                   2868:        *.zip*) \
                   2869:          unzip $(distdir).zip ;;\
                   2870:        esac
1.1.1.4 ! misho    2871:        chmod -R a-w $(distdir)
        !          2872:        chmod u+w $(distdir)
        !          2873:        mkdir $(distdir)/_build $(distdir)/_inst
1.1       misho    2874:        chmod a-w $(distdir)
                   2875:        test -d $(distdir)/_build || exit 0; \
                   2876:        dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
                   2877:          && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
                   2878:          && am__cwd=`pwd` \
                   2879:          && $(am__cd) $(distdir)/_build \
                   2880:          && ../configure --srcdir=.. --prefix="$$dc_install_base" \
1.1.1.4 ! misho    2881:            $(AM_DISTCHECK_CONFIGURE_FLAGS) \
1.1       misho    2882:            $(DISTCHECK_CONFIGURE_FLAGS) \
                   2883:          && $(MAKE) $(AM_MAKEFLAGS) \
                   2884:          && $(MAKE) $(AM_MAKEFLAGS) dvi \
                   2885:          && $(MAKE) $(AM_MAKEFLAGS) check \
                   2886:          && $(MAKE) $(AM_MAKEFLAGS) install \
                   2887:          && $(MAKE) $(AM_MAKEFLAGS) installcheck \
                   2888:          && $(MAKE) $(AM_MAKEFLAGS) uninstall \
                   2889:          && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
                   2890:                distuninstallcheck \
                   2891:          && chmod -R a-w "$$dc_install_base" \
                   2892:          && ({ \
                   2893:               (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
                   2894:               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
                   2895:               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
                   2896:               && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
                   2897:                    distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
                   2898:              } || { rm -rf "$$dc_destdir"; exit 1; }) \
                   2899:          && rm -rf "$$dc_destdir" \
                   2900:          && $(MAKE) $(AM_MAKEFLAGS) dist \
                   2901:          && rm -rf $(DIST_ARCHIVES) \
                   2902:          && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
                   2903:          && cd "$$am__cwd" \
                   2904:          || exit 1
1.1.1.4 ! misho    2905:        $(am__post_remove_distdir)
1.1       misho    2906:        @(echo "$(distdir) archives ready for distribution: "; \
                   2907:          list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
                   2908:          sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
                   2909: distuninstallcheck:
1.1.1.4 ! misho    2910:        @test -n '$(distuninstallcheck_dir)' || { \
        !          2911:          echo 'ERROR: trying to run $@ with an empty' \
        !          2912:               '$$(distuninstallcheck_dir)' >&2; \
        !          2913:          exit 1; \
        !          2914:        }; \
        !          2915:        $(am__cd) '$(distuninstallcheck_dir)' || { \
        !          2916:          echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
        !          2917:          exit 1; \
        !          2918:        }; \
        !          2919:        test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
1.1       misho    2920:           || { echo "ERROR: files left after uninstall:" ; \
                   2921:                if test -n "$(DESTDIR)"; then \
                   2922:                  echo "  (check DESTDIR support)"; \
                   2923:                fi ; \
                   2924:                $(distuninstallcheck_listfiles) ; \
                   2925:                exit 1; } >&2
                   2926: distcleancheck: distclean
                   2927:        @if test '$(srcdir)' = . ; then \
                   2928:          echo "ERROR: distcleancheck can only run from a VPATH build" ; \
                   2929:          exit 1 ; \
                   2930:        fi
                   2931:        @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
                   2932:          || { echo "ERROR: files left in build directory after distclean:" ; \
                   2933:               $(distcleancheck_listfiles) ; \
                   2934:               exit 1; } >&2
                   2935: check-am: all-am
                   2936:        $(MAKE) $(AM_MAKEFLAGS) $(check_SCRIPTS)
                   2937:        $(MAKE) $(AM_MAKEFLAGS) check-TESTS
1.1.1.2   misho    2938: check: $(BUILT_SOURCES)
                   2939:        $(MAKE) $(AM_MAKEFLAGS) check-am
1.1       misho    2940: all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(SCRIPTS) $(MANS) $(DATA) \
                   2941:                $(HEADERS) config.h
                   2942: install-binPROGRAMS: install-libLTLIBRARIES
                   2943: 
                   2944: installdirs:
                   2945:        for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(htmldir)" "$(DESTDIR)$(htmldir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(includedir)"; do \
                   2946:          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
                   2947:        done
1.1.1.2   misho    2948: install: $(BUILT_SOURCES)
                   2949:        $(MAKE) $(AM_MAKEFLAGS) install-am
1.1       misho    2950: install-exec: install-exec-am
                   2951: install-data: install-data-am
                   2952: uninstall: uninstall-am
                   2953: 
                   2954: install-am: all-am
                   2955:        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
                   2956: 
                   2957: installcheck: installcheck-am
                   2958: install-strip:
1.1.1.4 ! misho    2959:        if test -z '$(STRIP)'; then \
        !          2960:          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
        !          2961:            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
        !          2962:              install; \
        !          2963:        else \
        !          2964:          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
        !          2965:            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
        !          2966:            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
        !          2967:        fi
1.1       misho    2968: mostlyclean-generic:
1.1.1.4 ! misho    2969:        -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
        !          2970:        -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
        !          2971:        -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1.1       misho    2972: 
                   2973: clean-generic:
                   2974:        -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
                   2975: 
                   2976: distclean-generic:
                   2977:        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
                   2978:        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
                   2979: 
                   2980: maintainer-clean-generic:
                   2981:        @echo "This command is intended for maintainers to use"
                   2982:        @echo "it deletes files that may require special tools to rebuild."
1.1.1.2   misho    2983:        -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
1.1       misho    2984:        -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
1.1.1.4 ! misho    2985: @WITH_GCOV_FALSE@distclean-local:
        !          2986: @WITH_GCOV_FALSE@clean-local:
1.1       misho    2987: clean: clean-am
                   2988: 
                   2989: clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
1.1.1.4 ! misho    2990:        clean-libtool clean-local clean-noinstPROGRAMS mostlyclean-am
1.1       misho    2991: 
                   2992: distclean: distclean-am
                   2993:        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
                   2994:        -rm -rf ./$(DEPDIR)
                   2995:        -rm -f Makefile
                   2996: distclean-am: clean-am distclean-compile distclean-generic \
1.1.1.4 ! misho    2997:        distclean-hdr distclean-libtool distclean-local distclean-tags
1.1       misho    2998: 
                   2999: dvi: dvi-am
                   3000: 
                   3001: dvi-am:
                   3002: 
                   3003: html: html-am
                   3004: 
                   3005: html-am:
                   3006: 
                   3007: info: info-am
                   3008: 
                   3009: info-am:
                   3010: 
                   3011: install-data-am: install-dist_docDATA install-dist_htmlDATA \
                   3012:        install-htmlDATA install-includeHEADERS install-man \
                   3013:        install-nodist_includeHEADERS install-pkgconfigDATA
1.1.1.2   misho    3014:        @$(NORMAL_INSTALL)
                   3015:        $(MAKE) $(AM_MAKEFLAGS) install-data-hook
1.1       misho    3016: install-dvi: install-dvi-am
                   3017: 
                   3018: install-dvi-am:
                   3019: 
                   3020: install-exec-am: install-binPROGRAMS install-binSCRIPTS \
                   3021:        install-libLTLIBRARIES
                   3022: 
                   3023: install-html: install-html-am
                   3024: 
                   3025: install-html-am:
                   3026: 
                   3027: install-info: install-info-am
                   3028: 
                   3029: install-info-am:
                   3030: 
                   3031: install-man: install-man1 install-man3
                   3032: 
                   3033: install-pdf: install-pdf-am
                   3034: 
                   3035: install-pdf-am:
                   3036: 
                   3037: install-ps: install-ps-am
                   3038: 
                   3039: install-ps-am:
                   3040: 
                   3041: installcheck-am:
                   3042: 
                   3043: maintainer-clean: maintainer-clean-am
                   3044:        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
                   3045:        -rm -rf $(top_srcdir)/autom4te.cache
                   3046:        -rm -rf ./$(DEPDIR)
                   3047:        -rm -f Makefile
                   3048: maintainer-clean-am: distclean-am maintainer-clean-generic
                   3049: 
                   3050: mostlyclean: mostlyclean-am
                   3051: 
                   3052: mostlyclean-am: mostlyclean-compile mostlyclean-generic \
                   3053:        mostlyclean-libtool
                   3054: 
                   3055: pdf: pdf-am
                   3056: 
                   3057: pdf-am:
                   3058: 
                   3059: ps: ps-am
                   3060: 
                   3061: ps-am:
                   3062: 
                   3063: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
                   3064:        uninstall-dist_docDATA uninstall-dist_htmlDATA \
                   3065:        uninstall-htmlDATA uninstall-includeHEADERS \
                   3066:        uninstall-libLTLIBRARIES uninstall-man \
                   3067:        uninstall-nodist_includeHEADERS uninstall-pkgconfigDATA
                   3068: 
                   3069: uninstall-man: uninstall-man1 uninstall-man3
                   3070: 
1.1.1.2   misho    3071: .MAKE: all check check-am install install-am install-data-am \
                   3072:        install-strip
1.1       misho    3073: 
1.1.1.4 ! misho    3074: .PHONY: CTAGS GTAGS TAGS all all-am am--refresh check check-TESTS \
        !          3075:        check-am clean clean-binPROGRAMS clean-cscope clean-generic \
        !          3076:        clean-libLTLIBRARIES clean-libtool clean-local \
        !          3077:        clean-noinstPROGRAMS cscope cscopelist-am ctags ctags-am dist \
        !          3078:        dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
        !          3079:        dist-xz dist-zip distcheck distclean distclean-compile \
1.1       misho    3080:        distclean-generic distclean-hdr distclean-libtool \
1.1.1.4 ! misho    3081:        distclean-local distclean-tags distcleancheck distdir \
        !          3082:        distuninstallcheck dvi dvi-am html html-am info info-am \
        !          3083:        install install-am install-binPROGRAMS install-binSCRIPTS \
        !          3084:        install-data install-data-am install-data-hook \
        !          3085:        install-dist_docDATA install-dist_htmlDATA install-dvi \
        !          3086:        install-dvi-am install-exec install-exec-am install-html \
        !          3087:        install-html-am install-htmlDATA install-includeHEADERS \
        !          3088:        install-info install-info-am install-libLTLIBRARIES \
        !          3089:        install-man install-man1 install-man3 \
1.1       misho    3090:        install-nodist_includeHEADERS install-pdf install-pdf-am \
                   3091:        install-pkgconfigDATA install-ps install-ps-am install-strip \
                   3092:        installcheck installcheck-am installdirs maintainer-clean \
                   3093:        maintainer-clean-generic mostlyclean mostlyclean-compile \
                   3094:        mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1.1.1.4 ! misho    3095:        recheck tags tags-am uninstall uninstall-am \
        !          3096:        uninstall-binPROGRAMS uninstall-binSCRIPTS \
        !          3097:        uninstall-dist_docDATA uninstall-dist_htmlDATA \
        !          3098:        uninstall-htmlDATA uninstall-includeHEADERS \
        !          3099:        uninstall-libLTLIBRARIES uninstall-man uninstall-man1 \
        !          3100:        uninstall-man3 uninstall-nodist_includeHEADERS \
        !          3101:        uninstall-pkgconfigDATA
1.1       misho    3102: 
                   3103: 
1.1.1.4 ! misho    3104: # The only difference between pcre.h.in and pcre.h is the setting of the PCRE
        !          3105: # version number. Therefore, we can create the generic version just by copying.
        !          3106: pcre.h.generic: pcre.h.in configure.ac
1.1       misho    3107:        rm -f $@
                   3108:        cp -p pcre.h $@
                   3109: 
1.1.1.4 ! misho    3110: # It is more complicated for config.h.generic. We need the version that results
        !          3111: # from a default configuration so as to get all the default values for PCRE
        !          3112: # configuration macros such as MATCH_LIMIT and NEWLINE. We can get this by
        !          3113: # doing a configure in a temporary directory. However, some trickery is needed,
        !          3114: # because the source directory may already be configured. If you just try
        !          3115: # running configure in a new directory, it complains. For this reason, we move
        !          3116: # config.status out of the way while doing the default configuration. The
        !          3117: # resulting config.h is munged by perl to put #ifdefs round any #defines for
        !          3118: # macros with values, and to #undef all boolean macros such as HAVE_xxx and
        !          3119: # SUPPORT_xxx. We also get rid of any gcc-specific visibility settings. Make
        !          3120: # sure that PCRE_EXP_DEFN is unset (in case it has visibility settings).
        !          3121: config.h.generic: configure.ac
        !          3122:        rm -rf $@ _generic
        !          3123:        mkdir _generic
        !          3124:        cs=$(srcdir)/config.status; test ! -f $$cs || mv -f $$cs $$cs.aside
        !          3125:        cd _generic && $(abs_top_srcdir)/configure || :
        !          3126:        cs=$(srcdir)/config.status; test ! -f $$cs.aside || mv -f $$cs.aside $$cs
        !          3127:        test -f _generic/config.h
        !          3128:        perl -n \
        !          3129:          -e 'BEGIN{$$blank=0;}' \
        !          3130:          -e 'if(/PCRE_EXP_DEFN/){print"/* #undef PCRE_EXP_DEFN */\n";$$blank=0;next;}' \
        !          3131:          -e 'if(/to make a symbol visible/){next;}' \
        !          3132:          -e 'if(/__attribute__ \(\(visibility/){next;}' \
        !          3133:          -e 'if(/LT_OBJDIR/){print"/* This is ignored unless you are using libtool. */\n";}' \
        !          3134:          -e 'if(/^#define\s((?:HAVE|SUPPORT|STDC)_\w+)/){print"/* #undef $$1 */\n";$$blank=0;next;}' \
        !          3135:          -e 'if(/^#define\s(?!PACKAGE|VERSION)(\w+)/){print"#ifndef $$1\n$$_#endif\n";$$blank=0;next;}' \
        !          3136:          -e 'if(/^\s*$$/){print unless $$blank; $$blank=1;} else{print;$$blank=0;}' \
        !          3137:          _generic/config.h >$@
        !          3138:        rm -rf _generic
        !          3139: 
1.1       misho    3140: @WITH_REBUILD_CHARTABLES_TRUE@pcre_chartables.c: dftables$(EXEEXT)
                   3141: @WITH_REBUILD_CHARTABLES_TRUE@ ./dftables$(EXEEXT) $@
                   3142: 
                   3143: @WITH_REBUILD_CHARTABLES_FALSE@pcre_chartables.c: $(srcdir)/pcre_chartables.c.dist
                   3144: @WITH_REBUILD_CHARTABLES_FALSE@        rm -f $@
                   3145: @WITH_REBUILD_CHARTABLES_FALSE@        $(LN_S) $(srcdir)/pcre_chartables.c.dist $@
                   3146: 
                   3147: # A compatibility line, the old build system worked with 'make test'
                   3148: test: check ;
                   3149: 
                   3150: # A PCRE user submitted the following addition, saying that it "will allow
                   3151: # anyone using the 'mingw32' compiler to simply type 'make pcre.dll' and get a
                   3152: # nice DLL for Windows use".
                   3153: pcre.dll: $(DLL_OBJS)
                   3154:        $(CC) -shared -o pcre.dll -Wl,"--strip-all" -Wl,"--export-all-symbols" $(DLL_OBJS)
                   3155: 
1.1.1.4 ! misho    3156: # Arrange for the per-function man pages to have 16- and 32-bit names as well.
1.1.1.2   misho    3157: install-data-hook:
1.1.1.3   misho    3158:        ln -sf pcre_assign_jit_stack.3           $(DESTDIR)$(man3dir)/pcre16_assign_jit_stack.3
                   3159:        ln -sf pcre_compile.3                    $(DESTDIR)$(man3dir)/pcre16_compile.3
                   3160:        ln -sf pcre_compile2.3                   $(DESTDIR)$(man3dir)/pcre16_compile2.3
                   3161:        ln -sf pcre_config.3                     $(DESTDIR)$(man3dir)/pcre16_config.3
                   3162:        ln -sf pcre_copy_named_substring.3       $(DESTDIR)$(man3dir)/pcre16_copy_named_substring.3
                   3163:        ln -sf pcre_copy_substring.3             $(DESTDIR)$(man3dir)/pcre16_copy_substring.3
                   3164:        ln -sf pcre_dfa_exec.3                   $(DESTDIR)$(man3dir)/pcre16_dfa_exec.3
                   3165:        ln -sf pcre_exec.3                       $(DESTDIR)$(man3dir)/pcre16_exec.3
                   3166:        ln -sf pcre_free_study.3                 $(DESTDIR)$(man3dir)/pcre16_free_study.3
                   3167:        ln -sf pcre_free_substring.3             $(DESTDIR)$(man3dir)/pcre16_free_substring.3
                   3168:        ln -sf pcre_free_substring_list.3        $(DESTDIR)$(man3dir)/pcre16_free_substring_list.3
                   3169:        ln -sf pcre_fullinfo.3                   $(DESTDIR)$(man3dir)/pcre16_fullinfo.3
                   3170:        ln -sf pcre_get_named_substring.3        $(DESTDIR)$(man3dir)/pcre16_get_named_substring.3
                   3171:        ln -sf pcre_get_stringnumber.3           $(DESTDIR)$(man3dir)/pcre16_get_stringnumber.3
                   3172:        ln -sf pcre_get_stringtable_entries.3    $(DESTDIR)$(man3dir)/pcre16_get_stringtable_entries.3
                   3173:        ln -sf pcre_get_substring.3              $(DESTDIR)$(man3dir)/pcre16_get_substring.3
                   3174:        ln -sf pcre_get_substring_list.3         $(DESTDIR)$(man3dir)/pcre16_get_substring_list.3
1.1.1.4 ! misho    3175:        ln -sf pcre_jit_exec.3                   $(DESTDIR)$(man3dir)/pcre16_jit_exec.3
1.1.1.3   misho    3176:        ln -sf pcre_jit_stack_alloc.3            $(DESTDIR)$(man3dir)/pcre16_jit_stack_alloc.3
                   3177:        ln -sf pcre_jit_stack_free.3             $(DESTDIR)$(man3dir)/pcre16_jit_stack_free.3
                   3178:        ln -sf pcre_maketables.3                 $(DESTDIR)$(man3dir)/pcre16_maketables.3
                   3179:        ln -sf pcre_pattern_to_host_byte_order.3 $(DESTDIR)$(man3dir)/pcre16_pattern_to_host_byte_order.3
                   3180:        ln -sf pcre_refcount.3                   $(DESTDIR)$(man3dir)/pcre16_refcount.3
                   3181:        ln -sf pcre_study.3                      $(DESTDIR)$(man3dir)/pcre16_study.3
                   3182:        ln -sf pcre_utf16_to_host_byte_order.3   $(DESTDIR)$(man3dir)/pcre16_utf16_to_host_byte_order.3
                   3183:        ln -sf pcre_version.3                    $(DESTDIR)$(man3dir)/pcre16_version.3
1.1.1.4 ! misho    3184:        ln -sf pcre_assign_jit_stack.3           $(DESTDIR)$(man3dir)/pcre32_assign_jit_stack.3
        !          3185:        ln -sf pcre_compile.3                    $(DESTDIR)$(man3dir)/pcre32_compile.3
        !          3186:        ln -sf pcre_compile2.3                   $(DESTDIR)$(man3dir)/pcre32_compile2.3
        !          3187:        ln -sf pcre_config.3                     $(DESTDIR)$(man3dir)/pcre32_config.3
        !          3188:        ln -sf pcre_copy_named_substring.3       $(DESTDIR)$(man3dir)/pcre32_copy_named_substring.3
        !          3189:        ln -sf pcre_copy_substring.3             $(DESTDIR)$(man3dir)/pcre32_copy_substring.3
        !          3190:        ln -sf pcre_dfa_exec.3                   $(DESTDIR)$(man3dir)/pcre32_dfa_exec.3
        !          3191:        ln -sf pcre_exec.3                       $(DESTDIR)$(man3dir)/pcre32_exec.3
        !          3192:        ln -sf pcre_free_study.3                 $(DESTDIR)$(man3dir)/pcre32_free_study.3
        !          3193:        ln -sf pcre_free_substring.3             $(DESTDIR)$(man3dir)/pcre32_free_substring.3
        !          3194:        ln -sf pcre_free_substring_list.3        $(DESTDIR)$(man3dir)/pcre32_free_substring_list.3
        !          3195:        ln -sf pcre_fullinfo.3                   $(DESTDIR)$(man3dir)/pcre32_fullinfo.3
        !          3196:        ln -sf pcre_get_named_substring.3        $(DESTDIR)$(man3dir)/pcre32_get_named_substring.3
        !          3197:        ln -sf pcre_get_stringnumber.3           $(DESTDIR)$(man3dir)/pcre32_get_stringnumber.3
        !          3198:        ln -sf pcre_get_stringtable_entries.3    $(DESTDIR)$(man3dir)/pcre32_get_stringtable_entries.3
        !          3199:        ln -sf pcre_get_substring.3              $(DESTDIR)$(man3dir)/pcre32_get_substring.3
        !          3200:        ln -sf pcre_get_substring_list.3         $(DESTDIR)$(man3dir)/pcre32_get_substring_list.3
        !          3201:        ln -sf pcre_jit_exec.3                   $(DESTDIR)$(man3dir)/pcre32_jit_exec.3
        !          3202:        ln -sf pcre_jit_stack_alloc.3            $(DESTDIR)$(man3dir)/pcre32_jit_stack_alloc.3
        !          3203:        ln -sf pcre_jit_stack_free.3             $(DESTDIR)$(man3dir)/pcre32_jit_stack_free.3
        !          3204:        ln -sf pcre_maketables.3                 $(DESTDIR)$(man3dir)/pcre32_maketables.3
        !          3205:        ln -sf pcre_pattern_to_host_byte_order.3 $(DESTDIR)$(man3dir)/pcre32_pattern_to_host_byte_order.3
        !          3206:        ln -sf pcre_refcount.3                   $(DESTDIR)$(man3dir)/pcre32_refcount.3
        !          3207:        ln -sf pcre_study.3                      $(DESTDIR)$(man3dir)/pcre32_study.3
        !          3208:        ln -sf pcre_utf32_to_host_byte_order.3   $(DESTDIR)$(man3dir)/pcre32_utf32_to_host_byte_order.3
        !          3209:        ln -sf pcre_version.3                    $(DESTDIR)$(man3dir)/pcre32_version.3
        !          3210: 
        !          3211: @WITH_GCOV_TRUE@coverage-check: all
        !          3212: @WITH_GCOV_TRUE@       -$(MAKE) $(AM_MAKEFLAGS) -k check
        !          3213: 
        !          3214: @WITH_GCOV_TRUE@coverage-baseline:
        !          3215: @WITH_GCOV_TRUE@       $(LCOV) $(coverage_quiet) \
        !          3216: @WITH_GCOV_TRUE@               --directory $(top_builddir) \
        !          3217: @WITH_GCOV_TRUE@               --output-file "$(COVERAGE_OUTPUT_FILE)" \
        !          3218: @WITH_GCOV_TRUE@               --capture \
        !          3219: @WITH_GCOV_TRUE@               --initial
        !          3220: 
        !          3221: @WITH_GCOV_TRUE@coverage-report:
        !          3222: @WITH_GCOV_TRUE@       $(LCOV) $(coverage_quiet) \
        !          3223: @WITH_GCOV_TRUE@               --directory $(top_builddir) \
        !          3224: @WITH_GCOV_TRUE@               --capture \
        !          3225: @WITH_GCOV_TRUE@               --output-file "$(COVERAGE_OUTPUT_FILE).tmp" \
        !          3226: @WITH_GCOV_TRUE@               --test-name "$(COVERAGE_TEST_NAME)" \
        !          3227: @WITH_GCOV_TRUE@               --no-checksum \
        !          3228: @WITH_GCOV_TRUE@               --compat-libtool \
        !          3229: @WITH_GCOV_TRUE@               $(COVERAGE_LCOV_EXTRA_FLAGS)
        !          3230: @WITH_GCOV_TRUE@       $(LCOV) $(coverage_quiet) \
        !          3231: @WITH_GCOV_TRUE@               --directory $(top_builddir) \
        !          3232: @WITH_GCOV_TRUE@               --output-file "$(COVERAGE_OUTPUT_FILE)" \
        !          3233: @WITH_GCOV_TRUE@               --remove "$(COVERAGE_OUTPUT_FILE).tmp" \
        !          3234: @WITH_GCOV_TRUE@               "/tmp/*" \
        !          3235: @WITH_GCOV_TRUE@               "/usr/include/*" \
        !          3236: @WITH_GCOV_TRUE@               "$(includedir)/*"
        !          3237: @WITH_GCOV_TRUE@       -@rm -f "$(COVERAGE_OUTPUT_FILE).tmp"
        !          3238: @WITH_GCOV_TRUE@       LANG=C $(GENHTML) $(coverage_quiet) \
        !          3239: @WITH_GCOV_TRUE@               --prefix $(top_builddir) \
        !          3240: @WITH_GCOV_TRUE@               --output-directory "$(COVERAGE_OUTPUT_DIR)" \
        !          3241: @WITH_GCOV_TRUE@               --title "$(PACKAGE) $(VERSION) Code Coverage Report" \
        !          3242: @WITH_GCOV_TRUE@               --show-details "$(COVERAGE_OUTPUT_FILE)" \
        !          3243: @WITH_GCOV_TRUE@               --legend \
        !          3244: @WITH_GCOV_TRUE@               $(COVERAGE_GENHTML_EXTRA_FLAGS)
        !          3245: @WITH_GCOV_TRUE@       @echo "Code coverage report written to file://$(abs_builddir)/$(COVERAGE_OUTPUT_DIR)/index.html"
        !          3246: 
        !          3247: @WITH_GCOV_TRUE@coverage-reset:
        !          3248: @WITH_GCOV_TRUE@       -$(LCOV) $(coverage_quiet) --zerocounters --directory $(top_builddir)
        !          3249: 
        !          3250: @WITH_GCOV_TRUE@coverage-clean-report:
        !          3251: @WITH_GCOV_TRUE@       -rm -f "$(COVERAGE_OUTPUT_FILE)" "$(COVERAGE_OUTPUT_FILE).tmp"
        !          3252: @WITH_GCOV_TRUE@       -rm -rf "$(COVERAGE_OUTPUT_DIR)"
        !          3253: 
        !          3254: @WITH_GCOV_TRUE@coverage-clean-data:
        !          3255: @WITH_GCOV_TRUE@       -find $(top_builddir) -name "*.gcda" -delete
        !          3256: 
        !          3257: @WITH_GCOV_TRUE@coverage-clean: coverage-reset coverage-clean-report coverage-clean-data
        !          3258: @WITH_GCOV_TRUE@       -find $(top_builddir) -name "*.gcno" -delete
        !          3259: 
        !          3260: @WITH_GCOV_TRUE@coverage-distclean: coverage-clean
        !          3261: 
        !          3262: @WITH_GCOV_TRUE@coverage: coverage-reset coverage-baseline coverage-check coverage-report
        !          3263: @WITH_GCOV_TRUE@clean-local: coverage-clean
        !          3264: @WITH_GCOV_TRUE@distclean-local: coverage-distclean
        !          3265: 
        !          3266: @WITH_GCOV_TRUE@.PHONY: coverage coverage-baseline coverage-check coverage-report coverage-reset coverage-clean-report coverage-clean-data coverage-clean coverage-distclean
        !          3267: 
        !          3268: @WITH_GCOV_FALSE@coverage:
        !          3269: @WITH_GCOV_FALSE@      @echo "Configuring with --enable-coverage required to generate code coverage report."
1.1.1.2   misho    3270: 
1.1       misho    3271: # Tell versions [3.59,3.63) of GNU make to not export all variables.
                   3272: # Otherwise a system limit (for SysV at least) may be exceeded.
                   3273: .NOEXPORT:

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>