Annotation of embedaddon/ipsec-tools/rpm/Makefile.in, revision 1.1.1.2

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

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