diff options
| -rw-r--r-- | Makefile.in | 161 | 
1 files changed, 139 insertions, 22 deletions
| diff --git a/Makefile.in b/Makefile.in index f75d66e..4924268 100644 --- a/Makefile.in +++ b/Makefile.in @@ -38,10 +38,10 @@ target_triplet = @target@  sbin_PROGRAMS = radsecproxy$(EXEEXT)  bin_PROGRAMS = catgconf$(EXEEXT)  subdir = . -DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ -	$(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ -	ChangeLog INSTALL compile config.guess config.sub depcomp \ -	install-sh missing +DIST_COMMON = README $(am__configure_deps) $(dist_man_MANS) \ +	$(srcdir)/Makefile.am $(srcdir)/Makefile.in \ +	$(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL \ +	compile config.guess config.sub depcomp install-sh missing  ACLOCAL_M4 = $(top_srcdir)/aclocal.m4  am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \  	$(top_srcdir)/configure.ac @@ -52,7 +52,8 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \  mkinstalldirs = $(install_sh) -d  CONFIG_CLEAN_FILES =  CONFIG_CLEAN_VPATH_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" \ +	"$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"  PROGRAMS = $(bin_PROGRAMS) $(sbin_PROGRAMS)  am_catgconf_OBJECTS = catgconf-debug.$(OBJEXT) catgconf-util.$(OBJEXT) \  	catgconf-gconfig.$(OBJEXT) catgconf-catgconf.$(OBJEXT) @@ -82,6 +83,31 @@ CCLD = $(CC)  LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@  SOURCES = $(catgconf_SOURCES) $(radsecproxy_SOURCES)  DIST_SOURCES = $(catgconf_SOURCES) $(radsecproxy_SOURCES) +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ +    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ +    *) f=$$p;; \ +  esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ +  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ +  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ +  for p in $$list; do echo "$$p $$p"; done | \ +  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ +  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ +    if (++n[$$2] == $(am__install_max)) \ +      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ +    END { for (dir in files) print dir, files[dir] }' +am__base_list = \ +  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ +  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +man1dir = $(mandir)/man1 +man5dir = $(mandir)/man5 +NROFF = nroff +MANS = $(dist_man_MANS)  ETAGS = etags  CTAGS = ctags  DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) @@ -235,10 +261,8 @@ radsecproxy_LDFLAGS = @SSL_LDFLAGS@ @TARGET_LDFLAGS@  radsecproxy_LDADD = @SSL_LIBS@  catgconf_CFLAGS = -g -Wall -fno-strict-aliasing @TARGET_CFLAGS@  catgconf_LDFLAGS = @TARGET_LDFLAGS@ -EXTRA_DIST = radsecproxy.conf-example \ -		radsecproxy.1 \ -		radsecproxy.conf.5.xml - +dist_man_MANS = radsecproxy.1 radsecproxy.conf.5 +EXTRA_DIST = radsecproxy.conf-example radsecproxy.conf.5.xml  all: all-am  .SUFFIXES: @@ -648,6 +672,82 @@ radsecproxy-dtls.obj: dtls.c  @AMDEP_TRUE@@am__fastdepCC_FALSE@	source='dtls.c' object='radsecproxy-dtls.obj' libtool=no @AMDEPBACKSLASH@  @AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@  @am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(radsecproxy_CFLAGS) $(CFLAGS) -c -o radsecproxy-dtls.obj `if test -f 'dtls.c'; then $(CYGPATH_W) 'dtls.c'; else $(CYGPATH_W) '$(srcdir)/dtls.c'; fi` +install-man1: $(dist_man_MANS) +	@$(NORMAL_INSTALL) +	test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" +	@list=''; test -n "$(man1dir)" || exit 0; \ +	{ for i in $$list; do echo "$$i"; done; \ +	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +	  sed -n '/\.1[a-z]*$$/p'; \ +	} | while read p; do \ +	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +	  echo "$$d$$p"; echo "$$p"; \ +	done | \ +	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ +	sed 'N;N;s,\n, ,g' | { \ +	list=; while read file base inst; do \ +	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \ +	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ +	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ +	  fi; \ +	done; \ +	for i in $$list; do echo "$$i"; done | $(am__base_list) | \ +	while read files; do \ +	  test -z "$$files" || { \ +	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ +	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ +	done; } + +uninstall-man1: +	@$(NORMAL_UNINSTALL) +	@list=''; test -n "$(man1dir)" || exit 0; \ +	files=`{ for i in $$list; do echo "$$i"; done; \ +	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +	  sed -n '/\.1[a-z]*$$/p'; \ +	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ +	test -z "$$files" || { \ +	  echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ +	  cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } +install-man5: $(dist_man_MANS) +	@$(NORMAL_INSTALL) +	test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)" +	@list=''; test -n "$(man5dir)" || exit 0; \ +	{ for i in $$list; do echo "$$i"; done; \ +	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +	  sed -n '/\.5[a-z]*$$/p'; \ +	} | while read p; do \ +	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +	  echo "$$d$$p"; echo "$$p"; \ +	done | \ +	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ +	sed 'N;N;s,\n, ,g' | { \ +	list=; while read file base inst; do \ +	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \ +	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \ +	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \ +	  fi; \ +	done; \ +	for i in $$list; do echo "$$i"; done | $(am__base_list) | \ +	while read files; do \ +	  test -z "$$files" || { \ +	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \ +	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \ +	done; } + +uninstall-man5: +	@$(NORMAL_UNINSTALL) +	@list=''; test -n "$(man5dir)" || exit 0; \ +	files=`{ for i in $$list; do echo "$$i"; done; \ +	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ +	  sed -n '/\.5[a-z]*$$/p'; \ +	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \ +	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ +	test -z "$$files" || { \ +	  echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \ +	  cd "$(DESTDIR)$(man5dir)" && rm -f $$files; }  ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)  	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ @@ -702,6 +802,19 @@ distclean-tags:  	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags  distdir: $(DISTFILES) +	@list='$(MANS)'; if test -n "$$list"; then \ +	  list=`for p in $$list; do \ +	    if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ +	    if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ +	  if test -n "$$list" && \ +	    grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ +	    echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ +	    grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/         /' >&2; \ +	    echo "       to fix them, install help2man, remove and regenerate the man pages;" >&2; \ +	    echo "       typically \`make maintainer-clean' will remove them" >&2; \ +	    exit 1; \ +	  else :; fi; \ +	else :; fi  	$(am__remove_distdir)  	test -d "$(distdir)" || mkdir "$(distdir)"  	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ @@ -849,9 +962,9 @@ distcleancheck: distclean  	       exit 1; } >&2  check-am: all-am  check: check-am -all-am: Makefile $(PROGRAMS) +all-am: Makefile $(PROGRAMS) $(MANS)  installdirs: -	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)"; do \ +	for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(sbindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)"; do \  	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \  	done  install: install-am @@ -901,7 +1014,7 @@ info: info-am  info-am: -install-data-am: +install-data-am: install-man  install-dvi: install-dvi-am @@ -917,7 +1030,7 @@ install-info: install-info-am  install-info-am: -install-man: +install-man: install-man1 install-man5  install-pdf: install-pdf-am @@ -948,7 +1061,10 @@ ps: ps-am  ps-am: -uninstall-am: uninstall-binPROGRAMS uninstall-sbinPROGRAMS +uninstall-am: uninstall-binPROGRAMS uninstall-man \ +	uninstall-sbinPROGRAMS + +uninstall-man: uninstall-man1 uninstall-man5  .MAKE: install-am install-strip @@ -961,16 +1077,17 @@ uninstall-am: uninstall-binPROGRAMS uninstall-sbinPROGRAMS  	html-am info info-am install install-am install-binPROGRAMS \  	install-data install-data-am install-dvi install-dvi-am \  	install-exec install-exec-am install-html install-html-am \ -	install-info install-info-am install-man install-pdf \ -	install-pdf-am install-ps install-ps-am install-sbinPROGRAMS \ -	install-strip installcheck installcheck-am installdirs \ -	maintainer-clean maintainer-clean-generic mostlyclean \ -	mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ -	tags uninstall uninstall-am uninstall-binPROGRAMS \ -	uninstall-sbinPROGRAMS +	install-info install-info-am install-man install-man1 \ +	install-man5 install-pdf install-pdf-am install-ps \ +	install-ps-am install-sbinPROGRAMS install-strip installcheck \ +	installcheck-am installdirs maintainer-clean \ +	maintainer-clean-generic mostlyclean mostlyclean-compile \ +	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ +	uninstall-am uninstall-binPROGRAMS uninstall-man \ +	uninstall-man1 uninstall-man5 uninstall-sbinPROGRAMS -man: $(srcdir)/radsecproxy.conf.5.xml +radsecproxy.conf.5: $(srcdir)/radsecproxy.conf.5.xml  	docbook2x-man $<  # Build HTML version of radsecproxy.conf.5.  NOTE: Only tested with | 
