Annotation of embedaddon/ntp/kernel/Makefile.in, revision 1.1

1.1     ! misho       1: # Makefile.in generated by automake 1.11.1 from Makefile.am.
        !             2: # @configure_input@
        !             3: 
        !             4: # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
        !             5: # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
        !             6: # Inc.
        !             7: # This Makefile.in is free software; the Free Software Foundation
        !             8: # gives unlimited permission to copy and/or distribute it,
        !             9: # with or without modifications, as long as this notice is preserved.
        !            10: 
        !            11: # This program is distributed in the hope that it will be useful,
        !            12: # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
        !            13: # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
        !            14: # PARTICULAR PURPOSE.
        !            15: 
        !            16: @SET_MAKE@
        !            17: VPATH = @srcdir@
        !            18: pkgdatadir = $(datadir)/@PACKAGE@
        !            19: pkgincludedir = $(includedir)/@PACKAGE@
        !            20: pkglibdir = $(libdir)/@PACKAGE@
        !            21: pkglibexecdir = $(libexecdir)/@PACKAGE@
        !            22: am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
        !            23: install_sh_DATA = $(install_sh) -c -m 644
        !            24: install_sh_PROGRAM = $(install_sh) -c
        !            25: install_sh_SCRIPT = $(install_sh) -c
        !            26: INSTALL_HEADER = $(INSTALL_DATA)
        !            27: transform = $(program_transform_name)
        !            28: NORMAL_INSTALL = :
        !            29: PRE_INSTALL = :
        !            30: POST_INSTALL = :
        !            31: NORMAL_UNINSTALL = :
        !            32: PRE_UNINSTALL = :
        !            33: POST_UNINSTALL = :
        !            34: build_triplet = @build@
        !            35: host_triplet = @host@
        !            36: subdir = kernel
        !            37: DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in
        !            38: ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
        !            39: am__aclocal_m4_deps = $(top_srcdir)/sntp/libopts/m4/libopts.m4 \
        !            40:        $(top_srcdir)/m4/define_dir.m4 $(top_srcdir)/m4/libtool.m4 \
        !            41:        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
        !            42:        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
        !            43:        $(top_srcdir)/m4/ntp_cacheversion.m4 \
        !            44:        $(top_srcdir)/m4/ntp_dir_sep.m4 \
        !            45:        $(top_srcdir)/m4/ntp_lineeditlibs.m4 \
        !            46:        $(top_srcdir)/m4/ntp_openssl.m4 \
        !            47:        $(top_srcdir)/m4/ntp_vpathhack.m4 \
        !            48:        $(top_srcdir)/m4/os_cflags.m4 $(top_srcdir)/version.m4 \
        !            49:        $(top_srcdir)/configure.ac
        !            50: am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        !            51:        $(ACLOCAL_M4)
        !            52: mkinstalldirs = $(install_sh) -d
        !            53: CONFIG_HEADER = $(top_builddir)/config.h
        !            54: CONFIG_CLEAN_FILES =
        !            55: CONFIG_CLEAN_VPATH_FILES =
        !            56: SOURCES =
        !            57: DIST_SOURCES =
        !            58: RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
        !            59:        html-recursive info-recursive install-data-recursive \
        !            60:        install-dvi-recursive install-exec-recursive \
        !            61:        install-html-recursive install-info-recursive \
        !            62:        install-pdf-recursive install-ps-recursive install-recursive \
        !            63:        installcheck-recursive installdirs-recursive pdf-recursive \
        !            64:        ps-recursive uninstall-recursive
        !            65: RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive        \
        !            66:   distclean-recursive maintainer-clean-recursive
        !            67: AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
        !            68:        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
        !            69:        distdir
        !            70: ETAGS = etags
        !            71: CTAGS = ctags
        !            72: DIST_SUBDIRS = $(SUBDIRS)
        !            73: DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
        !            74: am__relativize = \
        !            75:   dir0=`pwd`; \
        !            76:   sed_first='s,^\([^/]*\)/.*$$,\1,'; \
        !            77:   sed_rest='s,^[^/]*/*,,'; \
        !            78:   sed_last='s,^.*/\([^/]*\)$$,\1,'; \
        !            79:   sed_butlast='s,/*[^/]*$$,,'; \
        !            80:   while test -n "$$dir1"; do \
        !            81:     first=`echo "$$dir1" | sed -e "$$sed_first"`; \
        !            82:     if test "$$first" != "."; then \
        !            83:       if test "$$first" = ".."; then \
        !            84:         dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
        !            85:         dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
        !            86:       else \
        !            87:         first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
        !            88:         if test "$$first2" = "$$first"; then \
        !            89:           dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
        !            90:         else \
        !            91:           dir2="../$$dir2"; \
        !            92:         fi; \
        !            93:         dir0="$$dir0"/"$$first"; \
        !            94:       fi; \
        !            95:     fi; \
        !            96:     dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
        !            97:   done; \
        !            98:   reldir="$$dir2"
        !            99: ACLOCAL = @ACLOCAL@
        !           100: AMTAR = @AMTAR@
        !           101: AR = @AR@
        !           102: AUTOCONF = @AUTOCONF@
        !           103: AUTOHEADER = @AUTOHEADER@
        !           104: AUTOMAKE = @AUTOMAKE@
        !           105: AWK = @AWK@
        !           106: BINSUBDIR = @BINSUBDIR@
        !           107: CC = @CC@
        !           108: CCDEPMODE = @CCDEPMODE@
        !           109: CFLAGS = @CFLAGS@
        !           110: CHUTEST = @CHUTEST@
        !           111: CLKTEST = @CLKTEST@
        !           112: CPP = @CPP@
        !           113: CPPFLAGS = @CPPFLAGS@
        !           114: CYGPATH_W = @CYGPATH_W@
        !           115: DCFD = @DCFD@
        !           116: DEFS = @DEFS@
        !           117: DEPDIR = @DEPDIR@
        !           118: DLLTOOL = @DLLTOOL@
        !           119: DSYMUTIL = @DSYMUTIL@
        !           120: DUMPBIN = @DUMPBIN@
        !           121: ECHO_C = @ECHO_C@
        !           122: ECHO_N = @ECHO_N@
        !           123: ECHO_T = @ECHO_T@
        !           124: EDITLINE_LIBS = @EDITLINE_LIBS@
        !           125: EF_LIBS = @EF_LIBS@
        !           126: EF_PROGS = @EF_PROGS@
        !           127: EGREP = @EGREP@
        !           128: EXEEXT = @EXEEXT@
        !           129: FGREP = @FGREP@
        !           130: GREP = @GREP@
        !           131: HAVE_INLINE = @HAVE_INLINE@
        !           132: INSTALL = @INSTALL@
        !           133: INSTALL_DATA = @INSTALL_DATA@
        !           134: INSTALL_PROGRAM = @INSTALL_PROGRAM@
        !           135: INSTALL_SCRIPT = @INSTALL_SCRIPT@
        !           136: INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
        !           137: LCRYPTO = @LCRYPTO@
        !           138: LD = @LD@
        !           139: LDFLAGS = @LDFLAGS@
        !           140: LIBOBJS = @LIBOBJS@
        !           141: LIBOPTS_CFLAGS = @LIBOPTS_CFLAGS@
        !           142: LIBOPTS_DIR = @LIBOPTS_DIR@
        !           143: LIBOPTS_LDADD = @LIBOPTS_LDADD@
        !           144: LIBPARSE = @LIBPARSE@
        !           145: LIBS = @LIBS@
        !           146: LIBTOOL = @LIBTOOL@
        !           147: LIPO = @LIPO@
        !           148: LN_S = @LN_S@
        !           149: LSCF = @LSCF@
        !           150: LTLIBOBJS = @LTLIBOBJS@
        !           151: MAKEINFO = @MAKEINFO@
        !           152: MAKE_ADJTIMED = @MAKE_ADJTIMED@
        !           153: MAKE_CHECK_LAYOUT = @MAKE_CHECK_LAYOUT@
        !           154: MAKE_CHECK_Y2K = @MAKE_CHECK_Y2K@
        !           155: MAKE_LIBNTPSIM = @MAKE_LIBNTPSIM@
        !           156: MAKE_LIBPARSE = @MAKE_LIBPARSE@
        !           157: MAKE_LIBPARSE_KERNEL = @MAKE_LIBPARSE_KERNEL@
        !           158: MAKE_NTPDSIM = @MAKE_NTPDSIM@
        !           159: MAKE_NTPSNMPD = @MAKE_NTPSNMPD@
        !           160: MAKE_NTPTIME = @MAKE_NTPTIME@
        !           161: MAKE_PARSEKMODULE = @MAKE_PARSEKMODULE@
        !           162: MAKE_TICKADJ = @MAKE_TICKADJ@
        !           163: MAKE_TIMETRIM = @MAKE_TIMETRIM@
        !           164: MANIFEST_TOOL = @MANIFEST_TOOL@
        !           165: MKDIR_P = @MKDIR_P@
        !           166: NM = @NM@
        !           167: NMEDIT = @NMEDIT@
        !           168: OBJDUMP = @OBJDUMP@
        !           169: OBJEXT = @OBJEXT@
        !           170: OPENSSL = @OPENSSL@
        !           171: OPENSSL_INC = @OPENSSL_INC@
        !           172: OPENSSL_LIB = @OPENSSL_LIB@
        !           173: OTOOL = @OTOOL@
        !           174: OTOOL64 = @OTOOL64@
        !           175: PACKAGE = @PACKAGE@
        !           176: PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
        !           177: PACKAGE_NAME = @PACKAGE_NAME@
        !           178: PACKAGE_STRING = @PACKAGE_STRING@
        !           179: PACKAGE_TARNAME = @PACKAGE_TARNAME@
        !           180: PACKAGE_URL = @PACKAGE_URL@
        !           181: PACKAGE_VERSION = @PACKAGE_VERSION@
        !           182: PATH_NET_SNMP_CONFIG = @PATH_NET_SNMP_CONFIG@
        !           183: PATH_PERL = @PATH_PERL@
        !           184: PATH_SEPARATOR = @PATH_SEPARATOR@
        !           185: PATH_SH = @PATH_SH@
        !           186: PATH_TEST = @PATH_TEST@
        !           187: POSIX_SHELL = @POSIX_SHELL@
        !           188: PROPDELAY = @PROPDELAY@
        !           189: RANLIB = @RANLIB@
        !           190: SED = @SED@
        !           191: SET_MAKE = @SET_MAKE@
        !           192: SHELL = @SHELL@
        !           193: SNMP_CFLAGS = @SNMP_CFLAGS@
        !           194: SNMP_CPPFLAGS = @SNMP_CPPFLAGS@
        !           195: SNMP_LIBS = @SNMP_LIBS@
        !           196: STRIP = @STRIP@
        !           197: TESTDCF = @TESTDCF@
        !           198: VERSION = @VERSION@
        !           199: YACC = @YACC@
        !           200: YFLAGS = @YFLAGS@
        !           201: abs_builddir = @abs_builddir@
        !           202: abs_srcdir = @abs_srcdir@
        !           203: abs_top_builddir = @abs_top_builddir@
        !           204: abs_top_srcdir = @abs_top_srcdir@
        !           205: ac_ct_AR = @ac_ct_AR@
        !           206: ac_ct_CC = @ac_ct_CC@
        !           207: ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
        !           208: am__include = @am__include@
        !           209: am__leading_dot = @am__leading_dot@
        !           210: am__quote = @am__quote@
        !           211: am__tar = @am__tar@
        !           212: am__untar = @am__untar@
        !           213: bindir = @bindir@
        !           214: build = @build@
        !           215: build_alias = @build_alias@
        !           216: build_cpu = @build_cpu@
        !           217: build_os = @build_os@
        !           218: build_vendor = @build_vendor@
        !           219: builddir = @builddir@
        !           220: datadir = @datadir@
        !           221: datarootdir = @datarootdir@
        !           222: docdir = @docdir@
        !           223: dvidir = @dvidir@
        !           224: exec_prefix = @exec_prefix@
        !           225: host = @host@
        !           226: host_alias = @host_alias@
        !           227: host_cpu = @host_cpu@
        !           228: host_os = @host_os@
        !           229: host_vendor = @host_vendor@
        !           230: htmldir = @htmldir@
        !           231: includedir = @includedir@
        !           232: infodir = @infodir@
        !           233: install_sh = @install_sh@
        !           234: libdir = @libdir@
        !           235: libexecdir = @libexecdir@
        !           236: localedir = @localedir@
        !           237: localstatedir = @localstatedir@
        !           238: mandir = @mandir@
        !           239: mkdir_p = @mkdir_p@
        !           240: oldincludedir = @oldincludedir@
        !           241: pdfdir = @pdfdir@
        !           242: prefix = @prefix@
        !           243: program_transform_name = @program_transform_name@
        !           244: psdir = @psdir@
        !           245: sbindir = @sbindir@
        !           246: sharedstatedir = @sharedstatedir@
        !           247: srcdir = @srcdir@
        !           248: subdirs = @subdirs@
        !           249: sysconfdir = @sysconfdir@
        !           250: target_alias = @target_alias@
        !           251: top_build_prefix = @top_build_prefix@
        !           252: top_builddir = @top_builddir@
        !           253: top_srcdir = @top_srcdir@
        !           254: 
        !           255: #AUTOMAKE_OPTIONS = ../util/ansi2knr no-dependencies
        !           256: AUTOMAKE_OPTIONS = 
        !           257: SUBDIRS = sys
        !           258: ETAGS_ARGS = Makefile.am
        !           259: EXTRA_DIST = chuinit.c clkinit.c tty_chu.c tty_chu_STREAMS.c tty_clk.c tty_clk_STREAMS.c
        !           260: all: all-recursive
        !           261: 
        !           262: .SUFFIXES:
        !           263: $(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
        !           264:        @for dep in $?; do \
        !           265:          case '$(am__configure_deps)' in \
        !           266:            *$$dep*) \
        !           267:              ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
        !           268:                && { if test -f $@; then exit 0; else break; fi; }; \
        !           269:              exit 1;; \
        !           270:          esac; \
        !           271:        done; \
        !           272:        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign kernel/Makefile'; \
        !           273:        $(am__cd) $(top_srcdir) && \
        !           274:          $(AUTOMAKE) --foreign kernel/Makefile
        !           275: .PRECIOUS: Makefile
        !           276: Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
        !           277:        @case '$?' in \
        !           278:          *config.status*) \
        !           279:            cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
        !           280:          *) \
        !           281:            echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
        !           282:            cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
        !           283:        esac;
        !           284: 
        !           285: $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
        !           286:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
        !           287: 
        !           288: $(top_srcdir)/configure:  $(am__configure_deps)
        !           289:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
        !           290: $(ACLOCAL_M4):  $(am__aclocal_m4_deps)
        !           291:        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
        !           292: $(am__aclocal_m4_deps):
        !           293: 
        !           294: mostlyclean-libtool:
        !           295:        -rm -f *.lo
        !           296: 
        !           297: clean-libtool:
        !           298:        -rm -rf .libs _libs
        !           299: 
        !           300: # This directory's subdirectories are mostly independent; you can cd
        !           301: # into them and run `make' without going through this Makefile.
        !           302: # To change the values of `make' variables: instead of editing Makefiles,
        !           303: # (1) if the variable is set in `config.status', edit `config.status'
        !           304: #     (which will cause the Makefiles to be regenerated when you run `make');
        !           305: # (2) otherwise, pass the desired values on the `make' command line.
        !           306: $(RECURSIVE_TARGETS):
        !           307:        @fail= failcom='exit 1'; \
        !           308:        for f in x $$MAKEFLAGS; do \
        !           309:          case $$f in \
        !           310:            *=* | --[!k]*);; \
        !           311:            *k*) failcom='fail=yes';; \
        !           312:          esac; \
        !           313:        done; \
        !           314:        dot_seen=no; \
        !           315:        target=`echo $@ | sed s/-recursive//`; \
        !           316:        list='$(SUBDIRS)'; for subdir in $$list; do \
        !           317:          echo "Making $$target in $$subdir"; \
        !           318:          if test "$$subdir" = "."; then \
        !           319:            dot_seen=yes; \
        !           320:            local_target="$$target-am"; \
        !           321:          else \
        !           322:            local_target="$$target"; \
        !           323:          fi; \
        !           324:          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
        !           325:          || eval $$failcom; \
        !           326:        done; \
        !           327:        if test "$$dot_seen" = "no"; then \
        !           328:          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
        !           329:        fi; test -z "$$fail"
        !           330: 
        !           331: $(RECURSIVE_CLEAN_TARGETS):
        !           332:        @fail= failcom='exit 1'; \
        !           333:        for f in x $$MAKEFLAGS; do \
        !           334:          case $$f in \
        !           335:            *=* | --[!k]*);; \
        !           336:            *k*) failcom='fail=yes';; \
        !           337:          esac; \
        !           338:        done; \
        !           339:        dot_seen=no; \
        !           340:        case "$@" in \
        !           341:          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
        !           342:          *) list='$(SUBDIRS)' ;; \
        !           343:        esac; \
        !           344:        rev=''; for subdir in $$list; do \
        !           345:          if test "$$subdir" = "."; then :; else \
        !           346:            rev="$$subdir $$rev"; \
        !           347:          fi; \
        !           348:        done; \
        !           349:        rev="$$rev ."; \
        !           350:        target=`echo $@ | sed s/-recursive//`; \
        !           351:        for subdir in $$rev; do \
        !           352:          echo "Making $$target in $$subdir"; \
        !           353:          if test "$$subdir" = "."; then \
        !           354:            local_target="$$target-am"; \
        !           355:          else \
        !           356:            local_target="$$target"; \
        !           357:          fi; \
        !           358:          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
        !           359:          || eval $$failcom; \
        !           360:        done && test -z "$$fail"
        !           361: tags-recursive:
        !           362:        list='$(SUBDIRS)'; for subdir in $$list; do \
        !           363:          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
        !           364:        done
        !           365: ctags-recursive:
        !           366:        list='$(SUBDIRS)'; for subdir in $$list; do \
        !           367:          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
        !           368:        done
        !           369: 
        !           370: ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
        !           371:        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
        !           372:        unique=`for i in $$list; do \
        !           373:            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
        !           374:          done | \
        !           375:          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
        !           376:              END { if (nonempty) { for (i in files) print i; }; }'`; \
        !           377:        mkid -fID $$unique
        !           378: tags: TAGS
        !           379: 
        !           380: TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
        !           381:                $(TAGS_FILES) $(LISP)
        !           382:        set x; \
        !           383:        here=`pwd`; \
        !           384:        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
        !           385:          include_option=--etags-include; \
        !           386:          empty_fix=.; \
        !           387:        else \
        !           388:          include_option=--include; \
        !           389:          empty_fix=; \
        !           390:        fi; \
        !           391:        list='$(SUBDIRS)'; for subdir in $$list; do \
        !           392:          if test "$$subdir" = .; then :; else \
        !           393:            test ! -f $$subdir/TAGS || \
        !           394:              set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
        !           395:          fi; \
        !           396:        done; \
        !           397:        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
        !           398:        unique=`for i in $$list; do \
        !           399:            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
        !           400:          done | \
        !           401:          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
        !           402:              END { if (nonempty) { for (i in files) print i; }; }'`; \
        !           403:        shift; \
        !           404:        if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
        !           405:          test -n "$$unique" || unique=$$empty_fix; \
        !           406:          if test $$# -gt 0; then \
        !           407:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
        !           408:              "$$@" $$unique; \
        !           409:          else \
        !           410:            $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
        !           411:              $$unique; \
        !           412:          fi; \
        !           413:        fi
        !           414: ctags: CTAGS
        !           415: CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
        !           416:                $(TAGS_FILES) $(LISP)
        !           417:        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
        !           418:        unique=`for i in $$list; do \
        !           419:            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
        !           420:          done | \
        !           421:          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
        !           422:              END { if (nonempty) { for (i in files) print i; }; }'`; \
        !           423:        test -z "$(CTAGS_ARGS)$$unique" \
        !           424:          || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
        !           425:             $$unique
        !           426: 
        !           427: GTAGS:
        !           428:        here=`$(am__cd) $(top_builddir) && pwd` \
        !           429:          && $(am__cd) $(top_srcdir) \
        !           430:          && gtags -i $(GTAGS_ARGS) "$$here"
        !           431: 
        !           432: distclean-tags:
        !           433:        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
        !           434: 
        !           435: distdir: $(DISTFILES)
        !           436:        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
        !           437:        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
        !           438:        list='$(DISTFILES)'; \
        !           439:          dist_files=`for file in $$list; do echo $$file; done | \
        !           440:          sed -e "s|^$$srcdirstrip/||;t" \
        !           441:              -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
        !           442:        case $$dist_files in \
        !           443:          */*) $(MKDIR_P) `echo "$$dist_files" | \
        !           444:                           sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
        !           445:                           sort -u` ;; \
        !           446:        esac; \
        !           447:        for file in $$dist_files; do \
        !           448:          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
        !           449:          if test -d $$d/$$file; then \
        !           450:            dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
        !           451:            if test -d "$(distdir)/$$file"; then \
        !           452:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
        !           453:            fi; \
        !           454:            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
        !           455:              cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
        !           456:              find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
        !           457:            fi; \
        !           458:            cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
        !           459:          else \
        !           460:            test -f "$(distdir)/$$file" \
        !           461:            || cp -p $$d/$$file "$(distdir)/$$file" \
        !           462:            || exit 1; \
        !           463:          fi; \
        !           464:        done
        !           465:        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
        !           466:          if test "$$subdir" = .; then :; else \
        !           467:            test -d "$(distdir)/$$subdir" \
        !           468:            || $(MKDIR_P) "$(distdir)/$$subdir" \
        !           469:            || exit 1; \
        !           470:          fi; \
        !           471:        done
        !           472:        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
        !           473:          if test "$$subdir" = .; then :; else \
        !           474:            dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
        !           475:            $(am__relativize); \
        !           476:            new_distdir=$$reldir; \
        !           477:            dir1=$$subdir; dir2="$(top_distdir)"; \
        !           478:            $(am__relativize); \
        !           479:            new_top_distdir=$$reldir; \
        !           480:            echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
        !           481:            echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
        !           482:            ($(am__cd) $$subdir && \
        !           483:              $(MAKE) $(AM_MAKEFLAGS) \
        !           484:                top_distdir="$$new_top_distdir" \
        !           485:                distdir="$$new_distdir" \
        !           486:                am__remove_distdir=: \
        !           487:                am__skip_length_check=: \
        !           488:                am__skip_mode_fix=: \
        !           489:                distdir) \
        !           490:              || exit 1; \
        !           491:          fi; \
        !           492:        done
        !           493: check-am: all-am
        !           494: check: check-recursive
        !           495: all-am: Makefile
        !           496: installdirs: installdirs-recursive
        !           497: installdirs-am:
        !           498: install: install-recursive
        !           499: install-exec: install-exec-recursive
        !           500: install-data: install-data-recursive
        !           501: uninstall: uninstall-recursive
        !           502: 
        !           503: install-am: all-am
        !           504:        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
        !           505: 
        !           506: installcheck: installcheck-recursive
        !           507: install-strip:
        !           508:        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
        !           509:          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
        !           510:          `test -z '$(STRIP)' || \
        !           511:            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
        !           512: mostlyclean-generic:
        !           513: 
        !           514: clean-generic:
        !           515: 
        !           516: distclean-generic:
        !           517:        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
        !           518:        -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
        !           519: 
        !           520: maintainer-clean-generic:
        !           521:        @echo "This command is intended for maintainers to use"
        !           522:        @echo "it deletes files that may require special tools to rebuild."
        !           523: clean: clean-recursive
        !           524: 
        !           525: clean-am: clean-generic clean-libtool mostlyclean-am
        !           526: 
        !           527: distclean: distclean-recursive
        !           528:        -rm -f Makefile
        !           529: distclean-am: clean-am distclean-generic distclean-tags
        !           530: 
        !           531: dvi: dvi-recursive
        !           532: 
        !           533: dvi-am:
        !           534: 
        !           535: html: html-recursive
        !           536: 
        !           537: html-am:
        !           538: 
        !           539: info: info-recursive
        !           540: 
        !           541: info-am:
        !           542: 
        !           543: install-data-am:
        !           544: 
        !           545: install-dvi: install-dvi-recursive
        !           546: 
        !           547: install-dvi-am:
        !           548: 
        !           549: install-exec-am:
        !           550: 
        !           551: install-html: install-html-recursive
        !           552: 
        !           553: install-html-am:
        !           554: 
        !           555: install-info: install-info-recursive
        !           556: 
        !           557: install-info-am:
        !           558: 
        !           559: install-man:
        !           560: 
        !           561: install-pdf: install-pdf-recursive
        !           562: 
        !           563: install-pdf-am:
        !           564: 
        !           565: install-ps: install-ps-recursive
        !           566: 
        !           567: install-ps-am:
        !           568: 
        !           569: installcheck-am:
        !           570: 
        !           571: maintainer-clean: maintainer-clean-recursive
        !           572:        -rm -f Makefile
        !           573: maintainer-clean-am: distclean-am maintainer-clean-generic
        !           574: 
        !           575: mostlyclean: mostlyclean-recursive
        !           576: 
        !           577: mostlyclean-am: mostlyclean-generic mostlyclean-libtool
        !           578: 
        !           579: pdf: pdf-recursive
        !           580: 
        !           581: pdf-am:
        !           582: 
        !           583: ps: ps-recursive
        !           584: 
        !           585: ps-am:
        !           586: 
        !           587: uninstall-am:
        !           588: 
        !           589: .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
        !           590:        install-am install-strip tags-recursive
        !           591: 
        !           592: .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
        !           593:        all all-am check check-am clean clean-generic clean-libtool \
        !           594:        ctags ctags-recursive distclean distclean-generic \
        !           595:        distclean-libtool distclean-tags distdir dvi dvi-am html \
        !           596:        html-am info info-am install install-am install-data \
        !           597:        install-data-am install-dvi install-dvi-am install-exec \
        !           598:        install-exec-am install-html install-html-am install-info \
        !           599:        install-info-am install-man install-pdf install-pdf-am \
        !           600:        install-ps install-ps-am install-strip installcheck \
        !           601:        installcheck-am installdirs installdirs-am maintainer-clean \
        !           602:        maintainer-clean-generic mostlyclean mostlyclean-generic \
        !           603:        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
        !           604:        uninstall uninstall-am
        !           605: 
        !           606: 
        !           607: # Tell versions [3.59,3.63) of GNU make to not export all variables.
        !           608: # Otherwise a system limit (for SysV at least) may be exceeded.
        !           609: .NOEXPORT:

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