Annotation of parser3/src/sql/Makefile.in, revision 1.25

1.25    ! moko        1: # Makefile.in generated by automake 1.15 from Makefile.am.
1.10      paf         2: # @configure_input@
1.1       paf         3: 
1.25    ! moko        4: # Copyright (C) 1994-2014 Free Software Foundation, Inc.
        !             5: 
1.1       paf         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: 
1.10      paf        15: @SET_MAKE@
1.1       paf        16: 
                     17: VPATH = @srcdir@
1.25    ! moko       18: am__is_gnu_make = { \
        !            19:   if test -z '$(MAKELEVEL)'; then \
        !            20:     false; \
        !            21:   elif test -n '$(MAKE_HOST)'; then \
        !            22:     true; \
        !            23:   elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
        !            24:     true; \
        !            25:   else \
        !            26:     false; \
        !            27:   fi; \
        !            28: }
        !            29: am__make_running_with_option = \
        !            30:   case $${target_option-} in \
        !            31:       ?) ;; \
        !            32:       *) echo "am__make_running_with_option: internal error: invalid" \
        !            33:               "target option '$${target_option-}' specified" >&2; \
        !            34:          exit 1;; \
        !            35:   esac; \
        !            36:   has_opt=no; \
        !            37:   sane_makeflags=$$MAKEFLAGS; \
        !            38:   if $(am__is_gnu_make); then \
        !            39:     sane_makeflags=$$MFLAGS; \
        !            40:   else \
        !            41:     case $$MAKEFLAGS in \
        !            42:       *\\[\ \  ]*) \
        !            43:         bs=\\; \
        !            44:         sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
        !            45:           | sed "s/$$bs$$bs[$$bs $$bs  ]*//g"`;; \
        !            46:     esac; \
        !            47:   fi; \
        !            48:   skip_next=no; \
        !            49:   strip_trailopt () \
        !            50:   { \
        !            51:     flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
        !            52:   }; \
        !            53:   for flg in $$sane_makeflags; do \
        !            54:     test $$skip_next = yes && { skip_next=no; continue; }; \
        !            55:     case $$flg in \
        !            56:       *=*|--*) continue;; \
        !            57:         -*I) strip_trailopt 'I'; skip_next=yes;; \
        !            58:       -*I?*) strip_trailopt 'I';; \
        !            59:         -*O) strip_trailopt 'O'; skip_next=yes;; \
        !            60:       -*O?*) strip_trailopt 'O';; \
        !            61:         -*l) strip_trailopt 'l'; skip_next=yes;; \
        !            62:       -*l?*) strip_trailopt 'l';; \
        !            63:       -[dEDm]) skip_next=yes;; \
        !            64:       -[JT]) skip_next=yes;; \
        !            65:     esac; \
        !            66:     case $$flg in \
        !            67:       *$$target_option*) has_opt=yes; break;; \
        !            68:     esac; \
        !            69:   done; \
        !            70:   test $$has_opt = yes
        !            71: am__make_dryrun = (target_option=n; $(am__make_running_with_option))
        !            72: am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
1.1       paf        73: pkgdatadir = $(datadir)/@PACKAGE@
1.23      moko       74: pkgincludedir = $(includedir)/@PACKAGE@
1.1       paf        75: pkglibdir = $(libdir)/@PACKAGE@
1.23      moko       76: pkglibexecdir = $(libexecdir)/@PACKAGE@
1.10      paf        77: am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
                     78: install_sh_DATA = $(install_sh) -c -m 644
                     79: install_sh_PROGRAM = $(install_sh) -c
                     80: install_sh_SCRIPT = $(install_sh) -c
                     81: INSTALL_HEADER = $(INSTALL_DATA)
                     82: transform = $(program_transform_name)
1.1       paf        83: NORMAL_INSTALL = :
                     84: PRE_INSTALL = :
                     85: POST_INSTALL = :
                     86: NORMAL_UNINSTALL = :
                     87: PRE_UNINSTALL = :
                     88: POST_UNINSTALL = :
1.23      moko       89: build_triplet = @build@
1.1       paf        90: host_triplet = @host@
1.14      paf        91: subdir = src/sql
                     92: ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
1.20      moko       93: am__aclocal_m4_deps = $(top_srcdir)/src/lib/ltdl/m4/argz.m4 \
                     94:        $(top_srcdir)/src/lib/ltdl/m4/libtool.m4 \
                     95:        $(top_srcdir)/src/lib/ltdl/m4/ltdl.m4 \
                     96:        $(top_srcdir)/src/lib/ltdl/m4/ltoptions.m4 \
                     97:        $(top_srcdir)/src/lib/ltdl/m4/ltsugar.m4 \
                     98:        $(top_srcdir)/src/lib/ltdl/m4/ltversion.m4 \
                     99:        $(top_srcdir)/src/lib/ltdl/m4/lt~obsolete.m4 \
1.24      moko      100:        $(top_srcdir)/configure.ac
1.14      paf       101: am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
                    102:        $(ACLOCAL_M4)
1.25    ! moko      103: DIST_COMMON = $(srcdir)/Makefile.am $(include_HEADERS) \
        !           104:        $(am__DIST_COMMON)
1.20      moko      105: mkinstalldirs = $(install_sh) -d
1.14      paf       106: CONFIG_HEADER = $(top_builddir)/src/include/pa_config_auto.h
                    107: CONFIG_CLEAN_FILES =
1.23      moko      108: CONFIG_CLEAN_VPATH_FILES =
1.25    ! moko      109: AM_V_P = $(am__v_P_@AM_V@)
        !           110: am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
        !           111: am__v_P_0 = false
        !           112: am__v_P_1 = :
        !           113: AM_V_GEN = $(am__v_GEN_@AM_V@)
        !           114: am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
        !           115: am__v_GEN_0 = @echo "  GEN     " $@;
        !           116: am__v_GEN_1 = 
        !           117: AM_V_at = $(am__v_at_@AM_V@)
        !           118: am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
        !           119: am__v_at_0 = @
        !           120: am__v_at_1 = 
1.14      paf       121: SOURCES =
                    122: DIST_SOURCES =
1.25    ! moko      123: am__can_run_installinfo = \
        !           124:   case $$AM_UPDATE_INFO_DIR in \
        !           125:     n|no|NO) false;; \
        !           126:     *) (install-info --version) >/dev/null 2>&1;; \
        !           127:   esac
1.22      moko      128: am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
                    129: am__vpath_adj = case $$p in \
                    130:     $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
                    131:     *) f=$$p;; \
                    132:   esac;
1.23      moko      133: am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
                    134: am__install_max = 40
                    135: am__nobase_strip_setup = \
                    136:   srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
                    137: am__nobase_strip = \
                    138:   for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
                    139: am__nobase_list = $(am__nobase_strip_setup); \
                    140:   for p in $$list; do echo "$$p $$p"; done | \
                    141:   sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
                    142:   $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
                    143:     if (++n[$$2] == $(am__install_max)) \
                    144:       { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
                    145:     END { for (dir in files) print dir, files[dir] }'
                    146: am__base_list = \
                    147:   sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
                    148:   sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
1.25    ! moko      149: am__uninstall_files_from_dir = { \
        !           150:   test -z "$$files" \
        !           151:     || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
        !           152:     || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
        !           153:          $(am__cd) "$$dir" && rm -f $$files; }; \
        !           154:   }
1.22      moko      155: am__installdirs = "$(DESTDIR)$(includedir)"
                    156: HEADERS = $(include_HEADERS)
1.25    ! moko      157: am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
        !           158: # Read a list of newline-separated strings from the standard input,
        !           159: # and print each of them once, without duplicates.  Input order is
        !           160: # *not* preserved.
        !           161: am__uniquify_input = $(AWK) '\
        !           162:   BEGIN { nonempty = 0; } \
        !           163:   { items[$$0] = 1; nonempty = 1; } \
        !           164:   END { if (nonempty) { for (i in items) print i; }; } \
        !           165: '
        !           166: # Make sure the list of sources is unique.  This is necessary because,
        !           167: # e.g., the same source file might be shared among _SOURCES variables
        !           168: # for different programs/libraries.
        !           169: am__define_uniq_tagged_files = \
        !           170:   list='$(am__tagged_files)'; \
        !           171:   unique=`for i in $$list; do \
        !           172:     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
        !           173:   done | $(am__uniquify_input)`
1.14      paf       174: ETAGS = etags
                    175: CTAGS = ctags
1.25    ! moko      176: am__DIST_COMMON = $(srcdir)/Makefile.in
1.14      paf       177: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
1.10      paf       178: ACLOCAL = @ACLOCAL@
                    179: AMTAR = @AMTAR@
1.25    ! moko      180: AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
1.18      moko      181: APACHE = @APACHE@
                    182: APACHE_CFLAGS = @APACHE_CFLAGS@
                    183: APACHE_INC = @APACHE_INC@
1.20      moko      184: AR = @AR@
                    185: ARGZ_H = @ARGZ_H@
                    186: AS = @AS@
1.10      paf       187: AUTOCONF = @AUTOCONF@
                    188: AUTOHEADER = @AUTOHEADER@
                    189: AUTOMAKE = @AUTOMAKE@
1.1       paf       190: AWK = @AWK@
                    191: CC = @CC@
1.10      paf       192: CCDEPMODE = @CCDEPMODE@
                    193: CFLAGS = @CFLAGS@
1.11      paf       194: CPP = @CPP@
1.10      paf       195: CPPFLAGS = @CPPFLAGS@
1.1       paf       196: CXX = @CXX@
1.20      moko      197: CXXCPP = @CXXCPP@
1.10      paf       198: CXXDEPMODE = @CXXDEPMODE@
                    199: CXXFLAGS = @CXXFLAGS@
                    200: CYGPATH_W = @CYGPATH_W@
                    201: DEFS = @DEFS@
                    202: DEPDIR = @DEPDIR@
1.20      moko      203: DLLTOOL = @DLLTOOL@
                    204: DSYMUTIL = @DSYMUTIL@
                    205: DUMPBIN = @DUMPBIN@
1.10      paf       206: ECHO_C = @ECHO_C@
                    207: ECHO_N = @ECHO_N@
                    208: ECHO_T = @ECHO_T@
                    209: EGREP = @EGREP@
                    210: EXEEXT = @EXEEXT@
1.20      moko      211: FGREP = @FGREP@
1.12      paf       212: GC_LIBS = @GC_LIBS@
1.20      moko      213: GREP = @GREP@
1.1       paf       214: INCLTDL = @INCLTDL@
1.23      moko      215: INSTALL = @INSTALL@
1.10      paf       216: INSTALL_DATA = @INSTALL_DATA@
                    217: INSTALL_PROGRAM = @INSTALL_PROGRAM@
                    218: INSTALL_SCRIPT = @INSTALL_SCRIPT@
                    219: INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
1.20      moko      220: LD = @LD@
1.10      paf       221: LDFLAGS = @LDFLAGS@
1.1       paf       222: LIBADD_DL = @LIBADD_DL@
1.20      moko      223: LIBADD_DLD_LINK = @LIBADD_DLD_LINK@
                    224: LIBADD_DLOPEN = @LIBADD_DLOPEN@
                    225: LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@
1.1       paf       226: LIBLTDL = @LIBLTDL@
1.10      paf       227: LIBOBJS = @LIBOBJS@
                    228: LIBS = @LIBS@
1.20      moko      229: LIBTOOL = @LIBTOOL@
                    230: LIPO = @LIPO@
                    231: LN_S = @LN_S@
                    232: LTDLDEPS = @LTDLDEPS@
                    233: LTDLINCL = @LTDLINCL@
                    234: LTDLOPEN = @LTDLOPEN@
1.10      paf       235: LTLIBOBJS = @LTLIBOBJS@
1.20      moko      236: LT_CONFIG_H = @LT_CONFIG_H@
                    237: LT_DLLOADERS = @LT_DLLOADERS@
                    238: LT_DLPREOPEN = @LT_DLPREOPEN@
1.1       paf       239: MAKEINFO = @MAKEINFO@
1.20      moko      240: MANIFEST_TOOL = @MANIFEST_TOOL@
1.6       paf       241: MIME_INCLUDES = @MIME_INCLUDES@
                    242: MIME_LIBS = @MIME_LIBS@
1.23      moko      243: MKDIR_P = @MKDIR_P@
1.20      moko      244: NM = @NM@
                    245: NMEDIT = @NMEDIT@
                    246: OBJDUMP = @OBJDUMP@
1.10      paf       247: OBJEXT = @OBJEXT@
1.20      moko      248: OTOOL = @OTOOL@
                    249: OTOOL64 = @OTOOL64@
1.1       paf       250: P3S = @P3S@
                    251: PACKAGE = @PACKAGE@
1.10      paf       252: PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
                    253: PACKAGE_NAME = @PACKAGE_NAME@
                    254: PACKAGE_STRING = @PACKAGE_STRING@
                    255: PACKAGE_TARNAME = @PACKAGE_TARNAME@
1.23      moko      256: PACKAGE_URL = @PACKAGE_URL@
1.10      paf       257: PACKAGE_VERSION = @PACKAGE_VERSION@
                    258: PATH_SEPARATOR = @PATH_SEPARATOR@
1.16      misha     259: PCRE_INCLUDES = @PCRE_INCLUDES@
                    260: PCRE_LIBS = @PCRE_LIBS@
1.1       paf       261: RANLIB = @RANLIB@
1.20      moko      262: SED = @SED@
1.10      paf       263: SET_MAKE = @SET_MAKE@
                    264: SHELL = @SHELL@
                    265: STRIP = @STRIP@
1.1       paf       266: VERSION = @VERSION@
                    267: XML_INCLUDES = @XML_INCLUDES@
                    268: XML_LIBS = @XML_LIBS@
                    269: YACC = @YACC@
1.23      moko      270: YFLAGS = @YFLAGS@
                    271: abs_builddir = @abs_builddir@
                    272: abs_srcdir = @abs_srcdir@
                    273: abs_top_builddir = @abs_top_builddir@
                    274: abs_top_srcdir = @abs_top_srcdir@
1.20      moko      275: ac_ct_AR = @ac_ct_AR@
1.10      paf       276: ac_ct_CC = @ac_ct_CC@
                    277: ac_ct_CXX = @ac_ct_CXX@
1.20      moko      278: ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
1.10      paf       279: am__include = @am__include@
1.14      paf       280: am__leading_dot = @am__leading_dot@
1.10      paf       281: am__quote = @am__quote@
1.14      paf       282: am__tar = @am__tar@
                    283: am__untar = @am__untar@
1.10      paf       284: bindir = @bindir@
                    285: build = @build@
                    286: build_alias = @build_alias@
                    287: build_cpu = @build_cpu@
                    288: build_os = @build_os@
                    289: build_vendor = @build_vendor@
1.23      moko      290: builddir = @builddir@
1.10      paf       291: datadir = @datadir@
1.23      moko      292: datarootdir = @datarootdir@
1.7       paf       293: dll_extension = @dll_extension@
1.23      moko      294: docdir = @docdir@
                    295: dvidir = @dvidir@
1.10      paf       296: exec_prefix = @exec_prefix@
                    297: host = @host@
                    298: host_alias = @host_alias@
                    299: host_cpu = @host_cpu@
1.1       paf       300: host_os = @host_os@
1.10      paf       301: host_vendor = @host_vendor@
1.23      moko      302: htmldir = @htmldir@
1.10      paf       303: includedir = @includedir@
                    304: infodir = @infodir@
                    305: install_sh = @install_sh@
                    306: libdir = @libdir@
                    307: libexecdir = @libexecdir@
1.23      moko      308: localedir = @localedir@
1.10      paf       309: localstatedir = @localstatedir@
1.20      moko      310: ltdl_LIBOBJS = @ltdl_LIBOBJS@
                    311: ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@
1.10      paf       312: mandir = @mandir@
1.14      paf       313: mkdir_p = @mkdir_p@
1.10      paf       314: oldincludedir = @oldincludedir@
1.23      moko      315: pdfdir = @pdfdir@
1.10      paf       316: prefix = @prefix@
                    317: program_transform_name = @program_transform_name@
1.23      moko      318: psdir = @psdir@
1.10      paf       319: sbindir = @sbindir@
                    320: sharedstatedir = @sharedstatedir@
1.23      moko      321: srcdir = @srcdir@
1.10      paf       322: subdirs = @subdirs@
1.20      moko      323: sys_symbol_underscore = @sys_symbol_underscore@
1.10      paf       324: sysconfdir = @sysconfdir@
                    325: target_alias = @target_alias@
1.23      moko      326: top_build_prefix = @top_build_prefix@
                    327: top_builddir = @top_builddir@
                    328: top_srcdir = @top_srcdir@
1.22      moko      329: include_HEADERS = pa_sql_driver.h
1.10      paf       330: all: all-am
1.1       paf       331: 
                    332: .SUFFIXES:
1.14      paf       333: $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
                    334:        @for dep in $?; do \
                    335:          case '$(am__configure_deps)' in \
                    336:            *$$dep*) \
1.23      moko      337:              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
                    338:                && { if test -f $@; then exit 0; else break; fi; }; \
1.14      paf       339:              exit 1;; \
                    340:          esac; \
                    341:        done; \
1.23      moko      342:        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/sql/Makefile'; \
                    343:        $(am__cd) $(top_srcdir) && \
                    344:          $(AUTOMAKE) --gnu src/sql/Makefile
1.14      paf       345: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
                    346:        @case '$?' in \
                    347:          *config.status*) \
                    348:            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
                    349:          *) \
                    350:            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
                    351:            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
                    352:        esac;
                    353: 
                    354: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
                    355:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
                    356: 
                    357: $(top_srcdir)/configure:  $(am__configure_deps)
                    358:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
                    359: $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
                    360:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
1.23      moko      361: $(am__aclocal_m4_deps):
1.20      moko      362: 
                    363: mostlyclean-libtool:
                    364:        -rm -f *.lo
                    365: 
                    366: clean-libtool:
                    367:        -rm -rf .libs _libs
1.22      moko      368: install-includeHEADERS: $(include_HEADERS)
                    369:        @$(NORMAL_INSTALL)
1.23      moko      370:        @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
1.25    ! moko      371:        if test -n "$$list"; then \
        !           372:          echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \
        !           373:          $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \
        !           374:        fi; \
1.23      moko      375:        for p in $$list; do \
1.22      moko      376:          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1.23      moko      377:          echo "$$d$$p"; \
                    378:        done | $(am__base_list) | \
                    379:        while read files; do \
                    380:          echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
                    381:          $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
1.22      moko      382:        done
                    383: 
                    384: uninstall-includeHEADERS:
                    385:        @$(NORMAL_UNINSTALL)
1.23      moko      386:        @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
                    387:        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
1.25    ! moko      388:        dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir)
        !           389: 
        !           390: ID: $(am__tagged_files)
        !           391:        $(am__define_uniq_tagged_files); mkid -fID $$unique
        !           392: tags: tags-am
        !           393: TAGS: tags
1.1       paf       394: 
1.25    ! moko      395: tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
1.23      moko      396:        set x; \
1.1       paf       397:        here=`pwd`; \
1.25    ! moko      398:        $(am__define_uniq_tagged_files); \
1.23      moko      399:        shift; \
                    400:        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
1.14      paf       401:          test -n "$$unique" || unique=$$empty_fix; \
1.23      moko      402:          if test $$# -gt 0; then \
                    403:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
                    404:              "$$@" $$unique; \
                    405:          else \
                    406:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
                    407:              $$unique; \
                    408:          fi; \
1.14      paf       409:        fi
1.25    ! moko      410: ctags: ctags-am
        !           411: 
        !           412: CTAGS: ctags
        !           413: ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
        !           414:        $(am__define_uniq_tagged_files); \
1.23      moko      415:        test -z "$(CTAGS_ARGS)$$unique" \
1.10      paf       416:          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1.23      moko      417:             $$unique
1.10      paf       418: 
                    419: GTAGS:
                    420:        here=`$(am__cd) $(top_builddir) && pwd` \
1.23      moko      421:          && $(am__cd) $(top_srcdir) \
                    422:          && gtags -i $(GTAGS_ARGS) "$$here"
1.25    ! moko      423: cscopelist: cscopelist-am
        !           424: 
        !           425: cscopelist-am: $(am__tagged_files)
        !           426:        list='$(am__tagged_files)'; \
        !           427:        case "$(srcdir)" in \
        !           428:          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
        !           429:          *) sdir=$(subdir)/$(srcdir) ;; \
        !           430:        esac; \
        !           431:        for i in $$list; do \
        !           432:          if test -f "$$i"; then \
        !           433:            echo "$(subdir)/$$i"; \
        !           434:          else \
        !           435:            echo "$$sdir/$$i"; \
        !           436:          fi; \
        !           437:        done >> $(top_builddir)/cscope.files
1.1       paf       438: 
                    439: distclean-tags:
1.10      paf       440:        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1.1       paf       441: 
                    442: distdir: $(DISTFILES)
1.23      moko      443:        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
                    444:        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
                    445:        list='$(DISTFILES)'; \
                    446:          dist_files=`for file in $$list; do echo $$file; done | \
                    447:          sed -e "s|^$$srcdirstrip/||;t" \
                    448:              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
                    449:        case $$dist_files in \
                    450:          */*) $(MKDIR_P) `echo "$$dist_files" | \
                    451:                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
                    452:                           sort -u` ;; \
                    453:        esac; \
                    454:        for file in $$dist_files; do \
1.10      paf       455:          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1.1       paf       456:          if test -d $$d/$$file; then \
1.23      moko      457:            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
                    458:            if test -d "$(distdir)/$$file"; then \
                    459:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
                    460:            fi; \
1.10      paf       461:            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1.23      moko      462:              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
                    463:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1.10      paf       464:            fi; \
1.23      moko      465:            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1.1       paf       466:          else \
1.23      moko      467:            test -f "$(distdir)/$$file" \
                    468:            || cp -p $$d/$$file "$(distdir)/$$file" \
1.10      paf       469:            || exit 1; \
1.1       paf       470:          fi; \
                    471:        done
                    472: check-am: all-am
                    473: check: check-am
1.10      paf       474: all-am: Makefile $(HEADERS)
                    475: installdirs:
1.22      moko      476:        for dir in "$(DESTDIR)$(includedir)"; do \
1.23      moko      477:          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1.22      moko      478:        done
1.10      paf       479: install: install-am
1.1       paf       480: install-exec: install-exec-am
                    481: install-data: install-data-am
1.10      paf       482: uninstall: uninstall-am
1.1       paf       483: 
                    484: install-am: all-am
                    485:        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1.10      paf       486: 
                    487: installcheck: installcheck-am
1.1       paf       488: install-strip:
1.25    ! moko      489:        if test -z '$(STRIP)'; then \
        !           490:          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
        !           491:            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
        !           492:              install; \
        !           493:        else \
        !           494:          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
        !           495:            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
        !           496:            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
        !           497:        fi
1.1       paf       498: mostlyclean-generic:
                    499: 
                    500: clean-generic:
                    501: 
                    502: distclean-generic:
1.14      paf       503:        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1.23      moko      504:        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1.1       paf       505: 
                    506: maintainer-clean-generic:
1.10      paf       507:        @echo "This command is intended for maintainers to use"
                    508:        @echo "it deletes files that may require special tools to rebuild."
                    509: clean: clean-am
                    510: 
1.20      moko      511: clean-am: clean-generic clean-libtool mostlyclean-am
1.10      paf       512: 
                    513: distclean: distclean-am
1.14      paf       514:        -rm -f Makefile
1.23      moko      515: distclean-am: clean-am distclean-generic distclean-tags
1.10      paf       516: 
                    517: dvi: dvi-am
                    518: 
                    519: dvi-am:
1.1       paf       520: 
1.14      paf       521: html: html-am
                    522: 
1.23      moko      523: html-am:
                    524: 
1.10      paf       525: info: info-am
                    526: 
                    527: info-am:
1.1       paf       528: 
1.22      moko      529: install-data-am: install-includeHEADERS
1.1       paf       530: 
1.23      moko      531: install-dvi: install-dvi-am
                    532: 
                    533: install-dvi-am:
                    534: 
1.10      paf       535: install-exec-am:
1.1       paf       536: 
1.23      moko      537: install-html: install-html-am
                    538: 
                    539: install-html-am:
                    540: 
1.10      paf       541: install-info: install-info-am
1.1       paf       542: 
1.23      moko      543: install-info-am:
                    544: 
1.10      paf       545: install-man:
1.1       paf       546: 
1.23      moko      547: install-pdf: install-pdf-am
                    548: 
                    549: install-pdf-am:
                    550: 
                    551: install-ps: install-ps-am
                    552: 
                    553: install-ps-am:
                    554: 
1.10      paf       555: installcheck-am:
1.1       paf       556: 
                    557: maintainer-clean: maintainer-clean-am
1.14      paf       558:        -rm -f Makefile
1.10      paf       559: maintainer-clean-am: distclean-am maintainer-clean-generic
                    560: 
                    561: mostlyclean: mostlyclean-am
                    562: 
1.20      moko      563: mostlyclean-am: mostlyclean-generic mostlyclean-libtool
1.10      paf       564: 
                    565: pdf: pdf-am
                    566: 
                    567: pdf-am:
                    568: 
                    569: ps: ps-am
                    570: 
                    571: ps-am:
                    572: 
1.23      moko      573: uninstall-am: uninstall-includeHEADERS
                    574: 
                    575: .MAKE: install-am install-strip
1.1       paf       576: 
1.25    ! moko      577: .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
        !           578:        clean-libtool cscopelist-am ctags ctags-am distclean \
        !           579:        distclean-generic distclean-libtool distclean-tags distdir dvi \
        !           580:        dvi-am html html-am info info-am install install-am \
        !           581:        install-data install-data-am install-dvi install-dvi-am \
        !           582:        install-exec install-exec-am install-html install-html-am \
1.22      moko      583:        install-includeHEADERS install-info install-info-am \
1.23      moko      584:        install-man install-pdf install-pdf-am install-ps \
                    585:        install-ps-am install-strip installcheck installcheck-am \
1.22      moko      586:        installdirs maintainer-clean maintainer-clean-generic \
                    587:        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
1.25    ! moko      588:        ps ps-am tags tags-am uninstall uninstall-am \
        !           589:        uninstall-includeHEADERS
        !           590: 
        !           591: .PRECIOUS: Makefile
1.23      moko      592: 
1.1       paf       593: 
                    594: # Tell versions [3.59,3.63) of GNU make to not export all variables.
                    595: # Otherwise a system limit (for SysV at least) may be exceeded.
                    596: .NOEXPORT:

E-mail: