Blame src/Makefile.in

Packit Service cb7057
# Makefile.in generated by automake 1.15 from Makefile.am.
Packit Service cb7057
# @configure_input@
Packit Service cb7057
Packit Service cb7057
# Copyright (C) 1994-2014 Free Software Foundation, Inc.
Packit Service cb7057
Packit Service cb7057
# This Makefile.in is free software; the Free Software Foundation
Packit Service cb7057
# gives unlimited permission to copy and/or distribute it,
Packit Service cb7057
# with or without modifications, as long as this notice is preserved.
Packit Service cb7057
Packit Service cb7057
# This program is distributed in the hope that it will be useful,
Packit Service cb7057
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
Packit Service cb7057
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
Packit Service cb7057
# PARTICULAR PURPOSE.
Packit Service cb7057
Packit Service cb7057
@SET_MAKE@
Packit Service cb7057
Packit Service cb7057
# This is _NOT_ the library release version, it's an API version.
Packit Service cb7057
# Please read Chapter 6 "Library interface versions" of the libtool
Packit Service cb7057
# documentation before making any modification
Packit Service cb7057
#
Packit Service cb7057
# http://sources.redhat.com/autobook/autobook/autobook_91.html
Packit Service cb7057
#
Packit Service cb7057
# The version scheme used by Libtool tracks interfaces, where an interface
Packit Service cb7057
# is the set of exported entry points into the library. All Libtool libraries
Packit Service cb7057
# start with `-version-info' set to `0:0:0' -- this will be the default
Packit Service cb7057
# version number if you don't explicitly set it on the Libtool link command
Packit Service cb7057
# line. The meaning of these numbers (from left to right) is as follows:
Packit Service cb7057
#
Packit Service cb7057
# current
Packit Service cb7057
#    The number of the current interface exported by the library. A current
Packit Service cb7057
#    value of `0', means that you are calling the interface exported by this
Packit Service cb7057
#    library interface 0.
Packit Service cb7057
#
Packit Service cb7057
# revision
Packit Service cb7057
#    The implementation number of the most recent interface exported by this
Packit Service cb7057
#    library. In this case, a revision value of `0' means that this is the 
Packit Service cb7057
#    first implementation of the interface.
Packit Service cb7057
#
Packit Service cb7057
#    If the next release of this library exports the same interface, but has
Packit Service cb7057
#    a different implementation (perhaps some bugs have been fixed), the
Packit Service cb7057
#    revision number will be higher, but current number will be the same.
Packit Service cb7057
#    In that case, when given a choice, the library with the highest revision
Packit Service cb7057
#    will always be used by the runtime loader.
Packit Service cb7057
#
Packit Service cb7057
# age
Packit Service cb7057
#    The number of previous additional interfaces supported by this library.
Packit Service cb7057
#    If age were `2', then this library can be linked into executables which
Packit Service cb7057
#    were built with a release of this library that exported the current
Packit Service cb7057
#    interface number, current, or any of the previous two interfaces.
Packit Service cb7057
#
Packit Service cb7057
#    By definition age must be less than or equal to current. At the outset,
Packit Service cb7057
#    only the first ever interface is implemented, so age can only be `0'. 
Packit Service cb7057
#
Packit Service cb7057
# 1. If you have changed any of the sources for this library, the revision
Packit Service cb7057
#    number must be incremented.
Packit Service cb7057
#    This is a new revision of the current interface.
Packit Service cb7057
#
Packit Service cb7057
# 2. If the interface has changed, then current must be incremented, and
Packit Service cb7057
#    revision reset to `0'.
Packit Service cb7057
#    This is the first revision of a new interface.
Packit Service cb7057
#
Packit Service cb7057
# 3. If the new interface is a superset of the previous interface (that is, 
Packit Service cb7057
#    if the previous interface has not been broken by the changes in this 
Packit Service cb7057
#    new release), then age must be incremented.
Packit Service cb7057
#    This release is backwards compatible with the previous release.
Packit Service cb7057
#
Packit Service cb7057
# 4. If the new interface has removed elements with respect to the previous
Packit Service cb7057
#    interface, then you have broken backward compatibility and age must be
Packit Service cb7057
#    reset to `0'.
Packit Service cb7057
#    This release has a new, but backwards incompatible interface.
Packit Service cb7057
#
Packit Service cb7057
# For example, if the next release of the library included some new commands
Packit Service cb7057
# for an existing socket protocol, you would use -version-info 1:0:1.
Packit Service cb7057
# This is the first revision of a new interface. This release is backwards
Packit Service cb7057
# compatible with the previous release.
Packit Service cb7057
#
Packit Service cb7057
# Later, you implement a faster way of handling part of the algorithm at the
Packit Service cb7057
# core of the library, and release it with -version-info 1:1:1. This is a new
Packit Service cb7057
# revision of the current interface.
Packit Service cb7057
#
Packit Service cb7057
# Unfortunately the speed of your new implementation can only be fully
Packit Service cb7057
# exploited by changing the API to access the structures at a lower level,
Packit Service cb7057
# which breaks compatibility with the previous interface, so you release it
Packit Service cb7057
# as -version-info 2:0:0. This release has a new, but backwards incompatible
Packit Service cb7057
# interface. 
Packit Service cb7057
Packit Service cb7057
VPATH = @srcdir@
Packit Service cb7057
am__is_gnu_make = { \
Packit Service cb7057
  if test -z '$(MAKELEVEL)'; then \
Packit Service cb7057
    false; \
Packit Service cb7057
  elif test -n '$(MAKE_HOST)'; then \
Packit Service cb7057
    true; \
Packit Service cb7057
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
Packit Service cb7057
    true; \
Packit Service cb7057
  else \
Packit Service cb7057
    false; \
Packit Service cb7057
  fi; \
Packit Service cb7057
}
Packit Service cb7057
am__make_running_with_option = \
Packit Service cb7057
  case $${target_option-} in \
Packit Service cb7057
      ?) ;; \
Packit Service cb7057
      *) echo "am__make_running_with_option: internal error: invalid" \
Packit Service cb7057
              "target option '$${target_option-}' specified" >&2; \
Packit Service cb7057
         exit 1;; \
Packit Service cb7057
  esac; \
Packit Service cb7057
  has_opt=no; \
Packit Service cb7057
  sane_makeflags=$$MAKEFLAGS; \
Packit Service cb7057
  if $(am__is_gnu_make); then \
Packit Service cb7057
    sane_makeflags=$$MFLAGS; \
Packit Service cb7057
  else \
Packit Service cb7057
    case $$MAKEFLAGS in \
Packit Service cb7057
      *\\[\ \	]*) \
Packit Service cb7057
        bs=\\; \
Packit Service cb7057
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
Packit Service cb7057
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
Packit Service cb7057
    esac; \
Packit Service cb7057
  fi; \
Packit Service cb7057
  skip_next=no; \
Packit Service cb7057
  strip_trailopt () \
Packit Service cb7057
  { \
Packit Service cb7057
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
Packit Service cb7057
  }; \
Packit Service cb7057
  for flg in $$sane_makeflags; do \
Packit Service cb7057
    test $$skip_next = yes && { skip_next=no; continue; }; \
Packit Service cb7057
    case $$flg in \
Packit Service cb7057
      *=*|--*) continue;; \
Packit Service cb7057
        -*I) strip_trailopt 'I'; skip_next=yes;; \
Packit Service cb7057
      -*I?*) strip_trailopt 'I';; \
Packit Service cb7057
        -*O) strip_trailopt 'O'; skip_next=yes;; \
Packit Service cb7057
      -*O?*) strip_trailopt 'O';; \
Packit Service cb7057
        -*l) strip_trailopt 'l'; skip_next=yes;; \
Packit Service cb7057
      -*l?*) strip_trailopt 'l';; \
Packit Service cb7057
      -[dEDm]) skip_next=yes;; \
Packit Service cb7057
      -[JT]) skip_next=yes;; \
Packit Service cb7057
    esac; \
Packit Service cb7057
    case $$flg in \
Packit Service cb7057
      *$$target_option*) has_opt=yes; break;; \
Packit Service cb7057
    esac; \
Packit Service cb7057
  done; \
Packit Service cb7057
  test $$has_opt = yes
Packit Service cb7057
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
Packit Service cb7057
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
Packit Service cb7057
pkgdatadir = $(datadir)/@PACKAGE@
Packit Service cb7057
pkgincludedir = $(includedir)/@PACKAGE@
Packit Service cb7057
pkglibdir = $(libdir)/@PACKAGE@
Packit Service cb7057
pkglibexecdir = $(libexecdir)/@PACKAGE@
Packit Service cb7057
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
Packit Service cb7057
install_sh_DATA = $(install_sh) -c -m 644
Packit Service cb7057
install_sh_PROGRAM = $(install_sh) -c
Packit Service cb7057
install_sh_SCRIPT = $(install_sh) -c
Packit Service cb7057
INSTALL_HEADER = $(INSTALL_DATA)
Packit Service cb7057
transform = $(program_transform_name)
Packit Service cb7057
NORMAL_INSTALL = :
Packit Service cb7057
PRE_INSTALL = :
Packit Service cb7057
POST_INSTALL = :
Packit Service cb7057
NORMAL_UNINSTALL = :
Packit Service cb7057
PRE_UNINSTALL = :
Packit Service cb7057
POST_UNINSTALL = :
Packit Service cb7057
build_triplet = @build@
Packit Service cb7057
host_triplet = @host@
Packit Service cb7057
@ENABLE_DEBUG_TRUE@am__append_1 = -g -g3 -ggdb -gdwarf-2 -DIPSET_DEBUG -Wall -Werror
Packit Service cb7057
@ENABLE_DEBUG_FALSE@am__append_2 = -O2 -DNDEBUG
Packit Service cb7057
sbin_PROGRAMS = ipset$(EXEEXT)
Packit Service cb7057
subdir = src
Packit Service cb7057
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
Packit Service cb7057
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_cflags_gcc_option.m4 \
Packit Service cb7057
	$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltargz.m4 \
Packit Service cb7057
	$(top_srcdir)/m4/ltdl.m4 $(top_srcdir)/m4/ltoptions.m4 \
Packit Service cb7057
	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
Packit Service cb7057
	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
Packit Service cb7057
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
Packit Service cb7057
	$(ACLOCAL_M4)
Packit Service cb7057
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
Packit Service cb7057
mkinstalldirs = $(install_sh) -d
Packit Service cb7057
CONFIG_HEADER = $(top_builddir)/config.h
Packit Service cb7057
CONFIG_CLEAN_FILES =
Packit Service cb7057
CONFIG_CLEAN_VPATH_FILES =
Packit Service cb7057
am__installdirs = "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"
Packit Service cb7057
PROGRAMS = $(sbin_PROGRAMS)
Packit Service cb7057
am_ipset_OBJECTS = ipset.$(OBJEXT)
Packit Service cb7057
ipset_OBJECTS = $(am_ipset_OBJECTS)
Packit Service cb7057
ipset_DEPENDENCIES = ../lib/libipset.la
Packit Service cb7057
AM_V_lt = $(am__v_lt_@AM_V@)
Packit Service cb7057
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_lt_0 = --silent
Packit Service cb7057
am__v_lt_1 = 
Packit Service cb7057
AM_V_P = $(am__v_P_@AM_V@)
Packit Service cb7057
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_P_0 = false
Packit Service cb7057
am__v_P_1 = :
Packit Service cb7057
AM_V_GEN = $(am__v_GEN_@AM_V@)
Packit Service cb7057
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_GEN_0 = @echo "  GEN     " $@;
Packit Service cb7057
am__v_GEN_1 = 
Packit Service cb7057
AM_V_at = $(am__v_at_@AM_V@)
Packit Service cb7057
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_at_0 = @
Packit Service cb7057
am__v_at_1 = 
Packit Service cb7057
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
Packit Service cb7057
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
Packit Service cb7057
am__depfiles_maybe = depfiles
Packit Service cb7057
am__mv = mv -f
Packit Service cb7057
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
Packit Service cb7057
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
Packit Service cb7057
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
Packit Service cb7057
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
Packit Service cb7057
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
Packit Service cb7057
	$(AM_CFLAGS) $(CFLAGS)
Packit Service cb7057
AM_V_CC = $(am__v_CC_@AM_V@)
Packit Service cb7057
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_CC_0 = @echo "  CC      " $@;
Packit Service cb7057
am__v_CC_1 = 
Packit Service cb7057
CCLD = $(CC)
Packit Service cb7057
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
Packit Service cb7057
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
Packit Service cb7057
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
Packit Service cb7057
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
Packit Service cb7057
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
Packit Service cb7057
am__v_CCLD_0 = @echo "  CCLD    " $@;
Packit Service cb7057
am__v_CCLD_1 = 
Packit Service cb7057
SOURCES = $(ipset_SOURCES)
Packit Service cb7057
DIST_SOURCES = $(ipset_SOURCES)
Packit Service cb7057
am__can_run_installinfo = \
Packit Service cb7057
  case $$AM_UPDATE_INFO_DIR in \
Packit Service cb7057
    n|no|NO) false;; \
Packit Service cb7057
    *) (install-info --version) >/dev/null 2>&1;; \
Packit Service cb7057
  esac
Packit Service cb7057
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
Packit Service cb7057
am__vpath_adj = case $$p in \
Packit Service cb7057
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
Packit Service cb7057
    *) f=$$p;; \
Packit Service cb7057
  esac;
Packit Service cb7057
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
Packit Service cb7057
am__install_max = 40
Packit Service cb7057
am__nobase_strip_setup = \
Packit Service cb7057
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
Packit Service cb7057
am__nobase_strip = \
Packit Service cb7057
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
Packit Service cb7057
am__nobase_list = $(am__nobase_strip_setup); \
Packit Service cb7057
  for p in $$list; do echo "$$p $$p"; done | \
Packit Service cb7057
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
Packit Service cb7057
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
Packit Service cb7057
    if (++n[$$2] == $(am__install_max)) \
Packit Service cb7057
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
Packit Service cb7057
    END { for (dir in files) print dir, files[dir] }'
Packit Service cb7057
am__base_list = \
Packit Service cb7057
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
Packit Service cb7057
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
Packit Service cb7057
am__uninstall_files_from_dir = { \
Packit Service cb7057
  test -z "$$files" \
Packit Service cb7057
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
Packit Service cb7057
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
Packit Service cb7057
         $(am__cd) "$$dir" && rm -f $$files; }; \
Packit Service cb7057
  }
Packit Service cb7057
man8dir = $(mandir)/man8
Packit Service cb7057
NROFF = nroff
Packit Service cb7057
MANS = $(dist_man_MANS)
Packit Service cb7057
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
Packit Service cb7057
# Read a list of newline-separated strings from the standard input,
Packit Service cb7057
# and print each of them once, without duplicates.  Input order is
Packit Service cb7057
# *not* preserved.
Packit Service cb7057
am__uniquify_input = $(AWK) '\
Packit Service cb7057
  BEGIN { nonempty = 0; } \
Packit Service cb7057
  { items[$$0] = 1; nonempty = 1; } \
Packit Service cb7057
  END { if (nonempty) { for (i in items) print i; }; } \
Packit Service cb7057
'
Packit Service cb7057
# Make sure the list of sources is unique.  This is necessary because,
Packit Service cb7057
# e.g., the same source file might be shared among _SOURCES variables
Packit Service cb7057
# for different programs/libraries.
Packit Service cb7057
am__define_uniq_tagged_files = \
Packit Service cb7057
  list='$(am__tagged_files)'; \
Packit Service cb7057
  unique=`for i in $$list; do \
Packit Service cb7057
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
Packit Service cb7057
  done | $(am__uniquify_input)`
Packit Service cb7057
ETAGS = etags
Packit Service cb7057
CTAGS = ctags
Packit Service cb7057
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
Packit Service cb7057
	$(top_srcdir)/Make_global.am $(top_srcdir)/build-aux/depcomp
Packit Service cb7057
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
Packit Service cb7057
ACLOCAL = @ACLOCAL@
Packit Service cb7057
AMTAR = @AMTAR@
Packit Service cb7057
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
Packit Service cb7057
AR = @AR@
Packit Service cb7057
AUTOCONF = @AUTOCONF@
Packit Service cb7057
AUTOHEADER = @AUTOHEADER@
Packit Service cb7057
AUTOMAKE = @AUTOMAKE@
Packit Service cb7057
AWK = @AWK@
Packit Service cb7057
CC = @CC@
Packit Service cb7057
CCDEPMODE = @CCDEPMODE@
Packit Service cb7057
CFLAGS = @CFLAGS@
Packit Service cb7057
CPP = @CPP@
Packit Service cb7057
CPPFLAGS = @CPPFLAGS@
Packit Service cb7057
CYGPATH_W = @CYGPATH_W@
Packit Service cb7057
DEFS = @DEFS@
Packit Service cb7057
DEPDIR = @DEPDIR@
Packit Service cb7057
DLLTOOL = @DLLTOOL@
Packit Service cb7057
DSYMUTIL = @DSYMUTIL@
Packit Service cb7057
DUMPBIN = @DUMPBIN@
Packit Service cb7057
ECHO_C = @ECHO_C@
Packit Service cb7057
ECHO_N = @ECHO_N@
Packit Service cb7057
ECHO_T = @ECHO_T@
Packit Service cb7057
EGREP = @EGREP@
Packit Service cb7057
EXEEXT = @EXEEXT@
Packit Service cb7057
FGREP = @FGREP@
Packit Service cb7057
GREP = @GREP@
Packit Service cb7057
HAVE_CHECKENTRY_BOOL = @HAVE_CHECKENTRY_BOOL@
Packit Service cb7057
HAVE_ETHER_ADDR_COPY = @HAVE_ETHER_ADDR_COPY@
Packit Service cb7057
HAVE_ETHER_ADDR_EQUAL = @HAVE_ETHER_ADDR_EQUAL@
Packit Service cb7057
HAVE_EXPORT_H = @HAVE_EXPORT_H@
Packit Service cb7057
HAVE_EXPORT_SYMBOL_GPL_IN_MODULE_H = @HAVE_EXPORT_SYMBOL_GPL_IN_MODULE_H@
Packit Service cb7057
HAVE_IPV6_SKIP_EXTHDR_ARGS = @HAVE_IPV6_SKIP_EXTHDR_ARGS@
Packit Service cb7057
HAVE_IS_ZERO_ETHER_ADDR = @HAVE_IS_ZERO_ETHER_ADDR@
Packit Service cb7057
HAVE_KVCALLOC = @HAVE_KVCALLOC@
Packit Service cb7057
HAVE_KVFREE = @HAVE_KVFREE@
Packit Service cb7057
HAVE_LIST_LAST_ENTRY = @HAVE_LIST_LAST_ENTRY@
Packit Service cb7057
HAVE_LIST_NEXT_ENTRY = @HAVE_LIST_NEXT_ENTRY@
Packit Service cb7057
HAVE_LOCKDEP_NFNL_IS_HELD = @HAVE_LOCKDEP_NFNL_IS_HELD@
Packit Service cb7057
HAVE_NETLINK_DUMP_START_ARGS = @HAVE_NETLINK_DUMP_START_ARGS@
Packit Service cb7057
HAVE_NETLINK_EXTENDED_ACK = @HAVE_NETLINK_EXTENDED_ACK@
Packit Service cb7057
HAVE_NET_IN_NFNL_CALLBACK_FN = @HAVE_NET_IN_NFNL_CALLBACK_FN@
Packit Service cb7057
HAVE_NET_IN_XT_ACTION_PARAM = @HAVE_NET_IN_XT_ACTION_PARAM@
Packit Service cb7057
HAVE_NET_OPS_ASYNC = @HAVE_NET_OPS_ASYNC@
Packit Service cb7057
HAVE_NET_OPS_ID = @HAVE_NET_OPS_ID@
Packit Service cb7057
HAVE_NFNL_LOCK_SUBSYS = @HAVE_NFNL_LOCK_SUBSYS@
Packit Service cb7057
HAVE_NFNL_MSG_TYPE = @HAVE_NFNL_MSG_TYPE@
Packit Service cb7057
HAVE_NF_BRIDGE_GET_PHYSDEV = @HAVE_NF_BRIDGE_GET_PHYSDEV@
Packit Service cb7057
HAVE_NLA_PUT_64BIT = @HAVE_NLA_PUT_64BIT@
Packit Service cb7057
HAVE_NLA_PUT_BE16 = @HAVE_NLA_PUT_BE16@
Packit Service cb7057
HAVE_NLA_PUT_BE64 = @HAVE_NLA_PUT_BE64@
Packit Service cb7057
HAVE_NLA_PUT_IN_ADDR = @HAVE_NLA_PUT_IN_ADDR@
Packit Service cb7057
HAVE_NL_INFO_PORTID = @HAVE_NL_INFO_PORTID@
Packit Service cb7057
HAVE_NS_CAPABLE = @HAVE_NS_CAPABLE@
Packit Service cb7057
HAVE_PASSING_EXTENDED_ACK_TO_CALLBACKS = @HAVE_PASSING_EXTENDED_ACK_TO_CALLBACKS@
Packit Service cb7057
HAVE_PASSING_EXTENDED_ACK_TO_PARSERS = @HAVE_PASSING_EXTENDED_ACK_TO_PARSERS@
Packit Service cb7057
HAVE_RBTREE_POSTORDER_FOR_EACH_ENTRY_SAFE = @HAVE_RBTREE_POSTORDER_FOR_EACH_ENTRY_SAFE@
Packit Service cb7057
HAVE_STATE_IN_XT_ACTION_PARAM = @HAVE_STATE_IN_XT_ACTION_PARAM@
Packit Service cb7057
HAVE_STRSCPY = @HAVE_STRSCPY@
Packit Service cb7057
HAVE_STRUCT_XT_ACTION_PARAM = @HAVE_STRUCT_XT_ACTION_PARAM@
Packit Service cb7057
HAVE_TCF_EMATCH_OPS_CHANGE_ARG_NET = @HAVE_TCF_EMATCH_OPS_CHANGE_ARG_NET@
Packit Service cb7057
HAVE_TCF_EMATCH_STRUCT_NET = @HAVE_TCF_EMATCH_STRUCT_NET@
Packit Service cb7057
HAVE_TC_SKB_PROTOCOL = @HAVE_TC_SKB_PROTOCOL@
Packit Service cb7057
HAVE_TIMER_SETUP = @HAVE_TIMER_SETUP@
Packit Service cb7057
HAVE_TYPEDEF_SCTP_SCTPHDR_T = @HAVE_TYPEDEF_SCTP_SCTPHDR_T@
Packit Service cb7057
HAVE_USER_NS_IN_STRUCT_NET = @HAVE_USER_NS_IN_STRUCT_NET@
Packit Service cb7057
HAVE_VZALLOC = @HAVE_VZALLOC@
Packit Service cb7057
HAVE_XT_FAMILY = @HAVE_XT_FAMILY@
Packit Service cb7057
HAVE_XT_MTCHK_PARAM_STRUCT_NET = @HAVE_XT_MTCHK_PARAM_STRUCT_NET@
Packit Service cb7057
HAVE_XT_NET = @HAVE_XT_NET@
Packit Service cb7057
HAVE_XT_TARGET_PARAM = @HAVE_XT_TARGET_PARAM@
Packit Service cb7057
INCLTDL = @INCLTDL@
Packit Service cb7057
INSTALL = @INSTALL@
Packit Service cb7057
INSTALL_DATA = @INSTALL_DATA@
Packit Service cb7057
INSTALL_PROGRAM = @INSTALL_PROGRAM@
Packit Service cb7057
INSTALL_SCRIPT = @INSTALL_SCRIPT@
Packit Service cb7057
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
Packit Service cb7057
KBUILDDIR = @KBUILDDIR@
Packit Service cb7057
LD = @LD@
Packit Service cb7057
LDFLAGS = @LDFLAGS@
Packit Service cb7057
LIBADD_DL = @LIBADD_DL@
Packit Service cb7057
LIBADD_DLD_LINK = @LIBADD_DLD_LINK@
Packit Service cb7057
LIBADD_DLOPEN = @LIBADD_DLOPEN@
Packit Service cb7057
LIBADD_SHL_LOAD = @LIBADD_SHL_LOAD@
Packit Service cb7057
LIBLTDL = @LIBLTDL@
Packit Service cb7057
LIBOBJS = @LIBOBJS@
Packit Service cb7057
LIBS = @LIBS@
Packit Service cb7057
LIBTOOL = @LIBTOOL@
Packit Service cb7057
LIPO = @LIPO@
Packit Service cb7057
LN_S = @LN_S@
Packit Service cb7057
LTDLDEPS = @LTDLDEPS@
Packit Service cb7057
LTDLINCL = @LTDLINCL@
Packit Service cb7057
LTDLOPEN = @LTDLOPEN@
Packit Service cb7057
LTLIBOBJS = @LTLIBOBJS@
Packit Service cb7057
LT_ARGZ_H = @LT_ARGZ_H@
Packit Service cb7057
LT_CONFIG_H = @LT_CONFIG_H@
Packit Service cb7057
LT_DLLOADERS = @LT_DLLOADERS@
Packit Service cb7057
LT_DLPREOPEN = @LT_DLPREOPEN@
Packit Service cb7057
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
Packit Service cb7057
MAKEINFO = @MAKEINFO@
Packit Service cb7057
MANIFEST_TOOL = @MANIFEST_TOOL@
Packit Service cb7057
MAXSETS = @MAXSETS@
Packit Service cb7057
MKDIR_P = @MKDIR_P@
Packit Service cb7057
NM = @NM@
Packit Service cb7057
NMEDIT = @NMEDIT@
Packit Service cb7057
OBJDUMP = @OBJDUMP@
Packit Service cb7057
OBJEXT = @OBJEXT@
Packit Service cb7057
OTOOL = @OTOOL@
Packit Service cb7057
OTOOL64 = @OTOOL64@
Packit Service cb7057
PACKAGE = @PACKAGE@
Packit Service cb7057
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
Packit Service cb7057
PACKAGE_NAME = @PACKAGE_NAME@
Packit Service cb7057
PACKAGE_STRING = @PACKAGE_STRING@
Packit Service cb7057
PACKAGE_TARNAME = @PACKAGE_TARNAME@
Packit Service cb7057
PACKAGE_URL = @PACKAGE_URL@
Packit Service cb7057
PACKAGE_VERSION = @PACKAGE_VERSION@
Packit Service cb7057
PATH_SEPARATOR = @PATH_SEPARATOR@
Packit Service cb7057
PKG_CONFIG = @PKG_CONFIG@
Packit Service cb7057
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
Packit Service cb7057
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
Packit Service cb7057
RANLIB = @RANLIB@
Packit Service cb7057
SED = @SED@
Packit Service cb7057
SETTYPE_MODLIST = @SETTYPE_MODLIST@
Packit Service cb7057
SET_MAKE = @SET_MAKE@
Packit Service cb7057
SHELL = @SHELL@
Packit Service cb7057
STRIP = @STRIP@
Packit Service cb7057
VERSION = @VERSION@
Packit Service cb7057
abs_builddir = @abs_builddir@
Packit Service cb7057
abs_srcdir = @abs_srcdir@
Packit Service cb7057
abs_top_builddir = @abs_top_builddir@
Packit Service cb7057
abs_top_srcdir = @abs_top_srcdir@
Packit Service cb7057
ac_ct_AR = @ac_ct_AR@
Packit Service cb7057
ac_ct_CC = @ac_ct_CC@
Packit Service cb7057
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
Packit Service cb7057
am__include = @am__include@
Packit Service cb7057
am__leading_dot = @am__leading_dot@
Packit Service cb7057
am__quote = @am__quote@
Packit Service cb7057
am__tar = @am__tar@
Packit Service cb7057
am__untar = @am__untar@
Packit Service cb7057
bashcompdir = @bashcompdir@
Packit Service cb7057
bindir = @bindir@
Packit Service cb7057
build = @build@
Packit Service cb7057
build_alias = @build_alias@
Packit Service cb7057
build_cpu = @build_cpu@
Packit Service cb7057
build_os = @build_os@
Packit Service cb7057
build_vendor = @build_vendor@
Packit Service cb7057
builddir = @builddir@
Packit Service cb7057
datadir = @datadir@
Packit Service cb7057
datarootdir = @datarootdir@
Packit Service cb7057
docdir = @docdir@
Packit Service cb7057
dvidir = @dvidir@
Packit Service cb7057
exec_prefix = @exec_prefix@
Packit Service cb7057
host = @host@
Packit Service cb7057
host_alias = @host_alias@
Packit Service cb7057
host_cpu = @host_cpu@
Packit Service cb7057
host_os = @host_os@
Packit Service cb7057
host_vendor = @host_vendor@
Packit Service cb7057
htmldir = @htmldir@
Packit Service cb7057
includedir = @includedir@
Packit Service cb7057
infodir = @infodir@
Packit Service cb7057
install_sh = @install_sh@
Packit Service cb7057
libdir = @libdir@
Packit Service cb7057
libexecdir = @libexecdir@
Packit Service cb7057
libmnl_CFLAGS = @libmnl_CFLAGS@
Packit Service cb7057
libmnl_LIBS = @libmnl_LIBS@
Packit Service cb7057
localedir = @localedir@
Packit Service cb7057
localstatedir = @localstatedir@
Packit Service cb7057
ltdl_LIBOBJS = @ltdl_LIBOBJS@
Packit Service cb7057
ltdl_LTLIBOBJS = @ltdl_LTLIBOBJS@
Packit Service cb7057
mandir = @mandir@
Packit Service cb7057
mkdir_p = @mkdir_p@
Packit Service cb7057
oldincludedir = @oldincludedir@
Packit Service cb7057
pdfdir = @pdfdir@
Packit Service cb7057
prefix = @prefix@
Packit Service cb7057
program_transform_name = @program_transform_name@
Packit Service cb7057
psdir = @psdir@
Packit Service cb7057
runstatedir = @runstatedir@
Packit Service cb7057
sbindir = @sbindir@
Packit Service cb7057
sharedstatedir = @sharedstatedir@
Packit Service cb7057
srcdir = @srcdir@
Packit Service cb7057
sys_symbol_underscore = @sys_symbol_underscore@
Packit Service cb7057
sysconfdir = @sysconfdir@
Packit Service cb7057
target_alias = @target_alias@
Packit Service cb7057
top_build_prefix = @top_build_prefix@
Packit Service cb7057
top_builddir = @top_builddir@
Packit Service cb7057
top_srcdir = @top_srcdir@
Packit Service cb7057
Packit Service cb7057
#            curr:rev:age
Packit Service cb7057
LIBVERSION = 14:0:1
Packit Service cb7057
AM_CPPFLAGS = $(kinclude_CFLAGS) $(all_includes) -I$(top_srcdir)/include
Packit Service cb7057
AM_CFLAGS = -std=gnu99 $(am__append_1) $(am__append_2)
Packit Service cb7057
SPARSE = sparse
Packit Service cb7057
SPARSE_FLAGS = -Wsparse-all -I../include $(SPARSE_EXT_FLAGS)
Packit Service cb7057
IPSET_AM_V_CHECK = $(ipset_am__v_CHECK_$(V))
Packit Service cb7057
ipset_am__v_CHECK_ = $(ipset_am__v_CHECK_$(AM_DEFAULT_VERBOSITY))
Packit Service cb7057
ipset_am__v_CHECK_0 = @echo "  CHECK " $<;
Packit Service cb7057
ipset_SOURCES = ipset.c
Packit Service cb7057
ipset_LDADD = ../lib/libipset.la
Packit Service cb7057
@ENABLE_SETTYPE_MODULES_FALSE@@ENABLE_STATIC_TRUE@AM_LDFLAGS = -static
Packit Service cb7057
@ENABLE_SETTYPE_MODULES_TRUE@AM_LDFLAGS = -shared
Packit Service cb7057
dist_man_MANS = ipset.8
Packit Service cb7057
all: all-am
Packit Service cb7057
Packit Service cb7057
.SUFFIXES:
Packit Service cb7057
.SUFFIXES: .c .lo .o .obj
Packit Service cb7057
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am $(top_srcdir)/Make_global.am $(am__configure_deps)
Packit Service cb7057
	@for dep in $?; do \
Packit Service cb7057
	  case '$(am__configure_deps)' in \
Packit Service cb7057
	    *$$dep*) \
Packit Service cb7057
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
Packit Service cb7057
	        && { if test -f $@; then exit 0; else break; fi; }; \
Packit Service cb7057
	      exit 1;; \
Packit Service cb7057
	  esac; \
Packit Service cb7057
	done; \
Packit Service cb7057
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
Packit Service cb7057
	$(am__cd) $(top_srcdir) && \
Packit Service cb7057
	  $(AUTOMAKE) --foreign src/Makefile
Packit Service cb7057
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Packit Service cb7057
	@case '$?' in \
Packit Service cb7057
	  *config.status*) \
Packit Service cb7057
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
Packit Service cb7057
	  *) \
Packit Service cb7057
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
Packit Service cb7057
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
Packit Service cb7057
	esac;
Packit Service cb7057
$(top_srcdir)/Make_global.am $(am__empty):
Packit Service cb7057
Packit Service cb7057
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
Packit Service cb7057
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service cb7057
Packit Service cb7057
$(top_srcdir)/configure:  $(am__configure_deps)
Packit Service cb7057
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service cb7057
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
Packit Service cb7057
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
Packit Service cb7057
$(am__aclocal_m4_deps):
Packit Service cb7057
install-sbinPROGRAMS: $(sbin_PROGRAMS)
Packit Service cb7057
	@$(NORMAL_INSTALL)
Packit Service cb7057
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
Packit Service cb7057
	if test -n "$$list"; then \
Packit Service cb7057
	  echo " $(MKDIR_P) '$(DESTDIR)$(sbindir)'"; \
Packit Service cb7057
	  $(MKDIR_P) "$(DESTDIR)$(sbindir)" || exit 1; \
Packit Service cb7057
	fi; \
Packit Service cb7057
	for p in $$list; do echo "$$p $$p"; done | \
Packit Service cb7057
	sed 's/$(EXEEXT)$$//' | \
Packit Service cb7057
	while read p p1; do if test -f $$p \
Packit Service cb7057
	 || test -f $$p1 \
Packit Service cb7057
	  ; then echo "$$p"; echo "$$p"; else :; fi; \
Packit Service cb7057
	done | \
Packit Service cb7057
	sed -e 'p;s,.*/,,;n;h' \
Packit Service cb7057
	    -e 's|.*|.|' \
Packit Service cb7057
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
Packit Service cb7057
	sed 'N;N;N;s,\n, ,g' | \
Packit Service cb7057
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
Packit Service cb7057
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
Packit Service cb7057
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
Packit Service cb7057
	    else { print "f", $$3 "/" $$4, $$1; } } \
Packit Service cb7057
	  END { for (d in files) print "f", d, files[d] }' | \
Packit Service cb7057
	while read type dir files; do \
Packit Service cb7057
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
Packit Service cb7057
	    test -z "$$files" || { \
Packit Service cb7057
	    echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(sbindir)$$dir'"; \
Packit Service cb7057
	    $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(sbindir)$$dir" || exit $$?; \
Packit Service cb7057
	    } \
Packit Service cb7057
	; done
Packit Service cb7057
Packit Service cb7057
uninstall-sbinPROGRAMS:
Packit Service cb7057
	@$(NORMAL_UNINSTALL)
Packit Service cb7057
	@list='$(sbin_PROGRAMS)'; test -n "$(sbindir)" || list=; \
Packit Service cb7057
	files=`for p in $$list; do echo "$$p"; done | \
Packit Service cb7057
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
Packit Service cb7057
	      -e 's/$$/$(EXEEXT)/' \
Packit Service cb7057
	`; \
Packit Service cb7057
	test -n "$$list" || exit 0; \
Packit Service cb7057
	echo " ( cd '$(DESTDIR)$(sbindir)' && rm -f" $$files ")"; \
Packit Service cb7057
	cd "$(DESTDIR)$(sbindir)" && rm -f $$files
Packit Service cb7057
Packit Service cb7057
clean-sbinPROGRAMS:
Packit Service cb7057
	@list='$(sbin_PROGRAMS)'; test -n "$$list" || exit 0; \
Packit Service cb7057
	echo " rm -f" $$list; \
Packit Service cb7057
	rm -f $$list || exit $$?; \
Packit Service cb7057
	test -n "$(EXEEXT)" || exit 0; \
Packit Service cb7057
	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
Packit Service cb7057
	echo " rm -f" $$list; \
Packit Service cb7057
	rm -f $$list
Packit Service cb7057
Packit Service cb7057
ipset$(EXEEXT): $(ipset_OBJECTS) $(ipset_DEPENDENCIES) $(EXTRA_ipset_DEPENDENCIES) 
Packit Service cb7057
	@rm -f ipset$(EXEEXT)
Packit Service cb7057
	$(AM_V_CCLD)$(LINK) $(ipset_OBJECTS) $(ipset_LDADD) $(LIBS)
Packit Service cb7057
Packit Service cb7057
mostlyclean-compile:
Packit Service cb7057
	-rm -f *.$(OBJEXT)
Packit Service cb7057
Packit Service cb7057
distclean-compile:
Packit Service cb7057
	-rm -f *.tab.c
Packit Service cb7057
Packit Service cb7057
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ipset.Po@am__quote@
Packit Service cb7057
Packit Service cb7057
.c.o:
Packit Service cb7057
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit Service cb7057
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
Packit Service cb7057
Packit Service cb7057
.c.obj:
Packit Service cb7057
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit Service cb7057
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
Packit Service cb7057
Packit Service cb7057
.c.lo:
Packit Service cb7057
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
Packit Service cb7057
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
Packit Service cb7057
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
Packit Service cb7057
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
Packit Service cb7057
Packit Service cb7057
mostlyclean-libtool:
Packit Service cb7057
	-rm -f *.lo
Packit Service cb7057
Packit Service cb7057
clean-libtool:
Packit Service cb7057
	-rm -rf .libs _libs
Packit Service cb7057
install-man8: $(dist_man_MANS)
Packit Service cb7057
	@$(NORMAL_INSTALL)
Packit Service cb7057
	@list1=''; \
Packit Service cb7057
	list2='$(dist_man_MANS)'; \
Packit Service cb7057
	test -n "$(man8dir)" \
Packit Service cb7057
	  && test -n "`echo $$list1$$list2`" \
Packit Service cb7057
	  || exit 0; \
Packit Service cb7057
	echo " $(MKDIR_P) '$(DESTDIR)$(man8dir)'"; \
Packit Service cb7057
	$(MKDIR_P) "$(DESTDIR)$(man8dir)" || exit 1; \
Packit Service cb7057
	{ for i in $$list1; do echo "$$i"; done;  \
Packit Service cb7057
	if test -n "$$list2"; then \
Packit Service cb7057
	  for i in $$list2; do echo "$$i"; done \
Packit Service cb7057
	    | sed -n '/\.8[a-z]*$$/p'; \
Packit Service cb7057
	fi; \
Packit Service cb7057
	} | while read p; do \
Packit Service cb7057
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
Packit Service cb7057
	  echo "$$d$$p"; echo "$$p"; \
Packit Service cb7057
	done | \
Packit Service cb7057
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
Packit Service cb7057
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
Packit Service cb7057
	sed 'N;N;s,\n, ,g' | { \
Packit Service cb7057
	list=; while read file base inst; do \
Packit Service cb7057
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
Packit Service cb7057
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man8dir)/$$inst'"; \
Packit Service cb7057
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man8dir)/$$inst" || exit $$?; \
Packit Service cb7057
	  fi; \
Packit Service cb7057
	done; \
Packit Service cb7057
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
Packit Service cb7057
	while read files; do \
Packit Service cb7057
	  test -z "$$files" || { \
Packit Service cb7057
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man8dir)'"; \
Packit Service cb7057
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man8dir)" || exit $$?; }; \
Packit Service cb7057
	done; }
Packit Service cb7057
Packit Service cb7057
uninstall-man8:
Packit Service cb7057
	@$(NORMAL_UNINSTALL)
Packit Service cb7057
	@list=''; test -n "$(man8dir)" || exit 0; \
Packit Service cb7057
	files=`{ for i in $$list; do echo "$$i"; done; \
Packit Service cb7057
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
Packit Service cb7057
	  sed -n '/\.8[a-z]*$$/p'; \
Packit Service cb7057
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^8][0-9a-z]*$$,8,;x' \
Packit Service cb7057
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
Packit Service cb7057
	dir='$(DESTDIR)$(man8dir)'; $(am__uninstall_files_from_dir)
Packit Service cb7057
Packit Service cb7057
ID: $(am__tagged_files)
Packit Service cb7057
	$(am__define_uniq_tagged_files); mkid -fID $$unique
Packit Service cb7057
tags: tags-am
Packit Service cb7057
TAGS: tags
Packit Service cb7057
Packit Service cb7057
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
Packit Service cb7057
	set x; \
Packit Service cb7057
	here=`pwd`; \
Packit Service cb7057
	$(am__define_uniq_tagged_files); \
Packit Service cb7057
	shift; \
Packit Service cb7057
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
Packit Service cb7057
	  test -n "$$unique" || unique=$$empty_fix; \
Packit Service cb7057
	  if test $$# -gt 0; then \
Packit Service cb7057
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
Packit Service cb7057
	      "$$@" $$unique; \
Packit Service cb7057
	  else \
Packit Service cb7057
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
Packit Service cb7057
	      $$unique; \
Packit Service cb7057
	  fi; \
Packit Service cb7057
	fi
Packit Service cb7057
ctags: ctags-am
Packit Service cb7057
Packit Service cb7057
CTAGS: ctags
Packit Service cb7057
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
Packit Service cb7057
	$(am__define_uniq_tagged_files); \
Packit Service cb7057
	test -z "$(CTAGS_ARGS)$$unique" \
Packit Service cb7057
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
Packit Service cb7057
	     $$unique
Packit Service cb7057
Packit Service cb7057
GTAGS:
Packit Service cb7057
	here=`$(am__cd) $(top_builddir) && pwd` \
Packit Service cb7057
	  && $(am__cd) $(top_srcdir) \
Packit Service cb7057
	  && gtags -i $(GTAGS_ARGS) "$$here"
Packit Service cb7057
cscopelist: cscopelist-am
Packit Service cb7057
Packit Service cb7057
cscopelist-am: $(am__tagged_files)
Packit Service cb7057
	list='$(am__tagged_files)'; \
Packit Service cb7057
	case "$(srcdir)" in \
Packit Service cb7057
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
Packit Service cb7057
	  *) sdir=$(subdir)/$(srcdir) ;; \
Packit Service cb7057
	esac; \
Packit Service cb7057
	for i in $$list; do \
Packit Service cb7057
	  if test -f "$$i"; then \
Packit Service cb7057
	    echo "$(subdir)/$$i"; \
Packit Service cb7057
	  else \
Packit Service cb7057
	    echo "$$sdir/$$i"; \
Packit Service cb7057
	  fi; \
Packit Service cb7057
	done >> $(top_builddir)/cscope.files
Packit Service cb7057
Packit Service cb7057
distclean-tags:
Packit Service cb7057
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
Packit Service cb7057
Packit Service cb7057
distdir: $(DISTFILES)
Packit Service cb7057
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit Service cb7057
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
Packit Service cb7057
	list='$(DISTFILES)'; \
Packit Service cb7057
	  dist_files=`for file in $$list; do echo $$file; done | \
Packit Service cb7057
	  sed -e "s|^$$srcdirstrip/||;t" \
Packit Service cb7057
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
Packit Service cb7057
	case $$dist_files in \
Packit Service cb7057
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
Packit Service cb7057
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
Packit Service cb7057
			   sort -u` ;; \
Packit Service cb7057
	esac; \
Packit Service cb7057
	for file in $$dist_files; do \
Packit Service cb7057
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
Packit Service cb7057
	  if test -d $$d/$$file; then \
Packit Service cb7057
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
Packit Service cb7057
	    if test -d "$(distdir)/$$file"; then \
Packit Service cb7057
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit Service cb7057
	    fi; \
Packit Service cb7057
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
Packit Service cb7057
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
Packit Service cb7057
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
Packit Service cb7057
	    fi; \
Packit Service cb7057
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
Packit Service cb7057
	  else \
Packit Service cb7057
	    test -f "$(distdir)/$$file" \
Packit Service cb7057
	    || cp -p $$d/$$file "$(distdir)/$$file" \
Packit Service cb7057
	    || exit 1; \
Packit Service cb7057
	  fi; \
Packit Service cb7057
	done
Packit Service cb7057
check-am: all-am
Packit Service cb7057
check: check-am
Packit Service cb7057
all-am: Makefile $(PROGRAMS) $(MANS)
Packit Service cb7057
installdirs:
Packit Service cb7057
	for dir in "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man8dir)"; do \
Packit Service cb7057
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
Packit Service cb7057
	done
Packit Service cb7057
install: install-am
Packit Service cb7057
install-exec: install-exec-am
Packit Service cb7057
install-data: install-data-am
Packit Service cb7057
uninstall: uninstall-am
Packit Service cb7057
Packit Service cb7057
install-am: all-am
Packit Service cb7057
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
Packit Service cb7057
Packit Service cb7057
installcheck: installcheck-am
Packit Service cb7057
install-strip:
Packit Service cb7057
	if test -z '$(STRIP)'; then \
Packit Service cb7057
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit Service cb7057
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit Service cb7057
	      install; \
Packit Service cb7057
	else \
Packit Service cb7057
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
Packit Service cb7057
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
Packit Service cb7057
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
Packit Service cb7057
	fi
Packit Service cb7057
mostlyclean-generic:
Packit Service cb7057
Packit Service cb7057
clean-generic:
Packit Service cb7057
Packit Service cb7057
distclean-generic:
Packit Service cb7057
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
Packit Service cb7057
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
Packit Service cb7057
Packit Service cb7057
maintainer-clean-generic:
Packit Service cb7057
	@echo "This command is intended for maintainers to use"
Packit Service cb7057
	@echo "it deletes files that may require special tools to rebuild."
Packit Service cb7057
clean: clean-am
Packit Service cb7057
Packit Service cb7057
clean-am: clean-generic clean-libtool clean-sbinPROGRAMS \
Packit Service cb7057
	mostlyclean-am
Packit Service cb7057
Packit Service cb7057
distclean: distclean-am
Packit Service cb7057
	-rm -rf ./$(DEPDIR)
Packit Service cb7057
	-rm -f Makefile
Packit Service cb7057
distclean-am: clean-am distclean-compile distclean-generic \
Packit Service cb7057
	distclean-tags
Packit Service cb7057
Packit Service cb7057
dvi: dvi-am
Packit Service cb7057
Packit Service cb7057
dvi-am:
Packit Service cb7057
Packit Service cb7057
html: html-am
Packit Service cb7057
Packit Service cb7057
html-am:
Packit Service cb7057
Packit Service cb7057
info: info-am
Packit Service cb7057
Packit Service cb7057
info-am:
Packit Service cb7057
Packit Service cb7057
install-data-am: install-man
Packit Service cb7057
Packit Service cb7057
install-dvi: install-dvi-am
Packit Service cb7057
Packit Service cb7057
install-dvi-am:
Packit Service cb7057
Packit Service cb7057
install-exec-am: install-sbinPROGRAMS
Packit Service cb7057
Packit Service cb7057
install-html: install-html-am
Packit Service cb7057
Packit Service cb7057
install-html-am:
Packit Service cb7057
Packit Service cb7057
install-info: install-info-am
Packit Service cb7057
Packit Service cb7057
install-info-am:
Packit Service cb7057
Packit Service cb7057
install-man: install-man8
Packit Service cb7057
Packit Service cb7057
install-pdf: install-pdf-am
Packit Service cb7057
Packit Service cb7057
install-pdf-am:
Packit Service cb7057
Packit Service cb7057
install-ps: install-ps-am
Packit Service cb7057
Packit Service cb7057
install-ps-am:
Packit Service cb7057
Packit Service cb7057
installcheck-am:
Packit Service cb7057
Packit Service cb7057
maintainer-clean: maintainer-clean-am
Packit Service cb7057
	-rm -rf ./$(DEPDIR)
Packit Service cb7057
	-rm -f Makefile
Packit Service cb7057
maintainer-clean-am: distclean-am maintainer-clean-generic
Packit Service cb7057
Packit Service cb7057
mostlyclean: mostlyclean-am
Packit Service cb7057
Packit Service cb7057
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
Packit Service cb7057
	mostlyclean-libtool
Packit Service cb7057
Packit Service cb7057
pdf: pdf-am
Packit Service cb7057
Packit Service cb7057
pdf-am:
Packit Service cb7057
Packit Service cb7057
ps: ps-am
Packit Service cb7057
Packit Service cb7057
ps-am:
Packit Service cb7057
Packit Service cb7057
uninstall-am: uninstall-man uninstall-sbinPROGRAMS
Packit Service cb7057
Packit Service cb7057
uninstall-man: uninstall-man8
Packit Service cb7057
Packit Service cb7057
.MAKE: install-am install-strip
Packit Service cb7057
Packit Service cb7057
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
Packit Service cb7057
	clean-libtool clean-sbinPROGRAMS cscopelist-am ctags ctags-am \
Packit Service cb7057
	distclean distclean-compile distclean-generic \
Packit Service cb7057
	distclean-libtool distclean-tags distdir dvi dvi-am html \
Packit Service cb7057
	html-am info info-am install install-am install-data \
Packit Service cb7057
	install-data-am install-dvi install-dvi-am install-exec \
Packit Service cb7057
	install-exec-am install-html install-html-am install-info \
Packit Service cb7057
	install-info-am install-man install-man8 install-pdf \
Packit Service cb7057
	install-pdf-am install-ps install-ps-am install-sbinPROGRAMS \
Packit Service cb7057
	install-strip installcheck installcheck-am installdirs \
Packit Service cb7057
	maintainer-clean maintainer-clean-generic mostlyclean \
Packit Service cb7057
	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
Packit Service cb7057
	pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
Packit Service cb7057
	uninstall-man uninstall-man8 uninstall-sbinPROGRAMS
Packit Service cb7057
Packit Service cb7057
.PRECIOUS: Makefile
Packit Service cb7057
Packit Service cb7057
Packit Service cb7057
sparse-check: $(ipset_SOURCES:.c=.d)
Packit Service cb7057
Packit Service cb7057
%.d: %.c
Packit Service cb7057
	$(IPSET_AM_V_CHECK)\
Packit Service cb7057
	$(SPARSE) -I.. $(SPARSE_FLAGS) $(AM_CFLAGS) $(AM_CPPFLAGS) $< || :
Packit Service cb7057
Packit Service cb7057
# Tell versions [3.59,3.63) of GNU make to not export all variables.
Packit Service cb7057
# Otherwise a system limit (for SysV at least) may be exceeded.
Packit Service cb7057
.NOEXPORT: