ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/help/Makefile.in
(Generate patch)

Comparing:
ircd-hybrid-7.3/help/Makefile.in (file contents), Revision 1106 by michael, Tue Nov 2 15:10:53 2010 UTC vs.
ircd-hybrid/trunk/help/Makefile.in (file contents), Revision 1720 by michael, Fri Dec 28 21:06:21 2012 UTC

# Line 1 | Line 1
1 < # Makefile.in generated by automake 1.11.1 from Makefile.am.
1 > # Makefile.in generated by automake 1.13 from Makefile.am.
2   # @configure_input@
3  
4 < # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5 < # 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
6 < # Inc.
4 > # Copyright (C) 1994-2012 Free Software Foundation, Inc.
5 >
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.
# Line 15 | Line 14
14  
15   @SET_MAKE@
16   VPATH = @srcdir@
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 +  }
34   pkgdatadir = $(datadir)/@PACKAGE@
35   pkgincludedir = $(includedir)/@PACKAGE@
36   pkglibdir = $(libdir)/@PACKAGE@
# Line 34 | Line 50 | POST_UNINSTALL = :
50   build_triplet = @build@
51   host_triplet = @host@
52   subdir = help
53 < DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
53 > DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
54   ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
55   am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
56          $(top_srcdir)/configure.ac
# Line 44 | Line 60 | mkinstalldirs = $(install_sh) -d
60   CONFIG_HEADER = $(top_builddir)/config.h
61   CONFIG_CLEAN_FILES =
62   CONFIG_CLEAN_VPATH_FILES =
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 =
75   SOURCES =
76   DIST_SOURCES =
77 < RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
78 <        html-recursive info-recursive install-data-recursive \
79 <        install-dvi-recursive install-exec-recursive \
80 <        install-html-recursive install-info-recursive \
81 <        install-pdf-recursive install-ps-recursive install-recursive \
82 <        installcheck-recursive installdirs-recursive pdf-recursive \
83 <        ps-recursive uninstall-recursive
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
90   RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
91    distclean-recursive maintainer-clean-recursive
92 < AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
93 <        $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
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 \
97          distdir
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)`
115   ETAGS = etags
116   CTAGS = ctags
117   DIST_SUBDIRS = $(SUBDIRS)
# Line 89 | Line 143 | am__relativize = \
143    reldir="$$dir2"
144   ACLOCAL = @ACLOCAL@
145   AMTAR = @AMTAR@
146 + AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
147   AR = @AR@
148   ARGZ_H = @ARGZ_H@
149   AUTOCONF = @AUTOCONF@
# Line 270 | Line 325 | clean-libtool:
325          -rm -rf .libs _libs
326  
327   # This directory's subdirectories are mostly independent; you can cd
328 < # into them and run `make' without going through this Makefile.
329 < # To change the values of `make' variables: instead of editing Makefiles,
330 < # (1) if the variable is set in `config.status', edit `config.status'
331 < #     (which will cause the Makefiles to be regenerated when you run `make');
332 < # (2) otherwise, pass the desired values on the `make' command line.
333 < $(RECURSIVE_TARGETS):
328 > # into them and run 'make' without going through this Makefile.
329 > # To change the values of 'make' variables: instead of editing Makefiles,
330 > # (1) if the variable is set in 'config.status', edit 'config.status'
331 > #     (which will cause the Makefiles to be regenerated when you run 'make');
332 > # (2) otherwise, pass the desired values on the 'make' command line.
333 > $(am__recursive_targets):
334          @fail= failcom='exit 1'; \
335          for f in x $$MAKEFLAGS; do \
336            case $$f in \
# Line 285 | Line 340 | $(RECURSIVE_TARGETS):
340          done; \
341          dot_seen=no; \
342          target=`echo $@ | sed s/-recursive//`; \
343 <        list='$(SUBDIRS)'; for subdir in $$list; do \
343 >        case "$@" in \
344 >          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
345 >          *) list='$(SUBDIRS)' ;; \
346 >        esac; \
347 >        for subdir in $$list; do \
348            echo "Making $$target in $$subdir"; \
349            if test "$$subdir" = "."; then \
350              dot_seen=yes; \
# Line 300 | Line 359 | $(RECURSIVE_TARGETS):
359            $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
360          fi; test -z "$$fail"
361  
362 < $(RECURSIVE_CLEAN_TARGETS):
363 <        @fail= failcom='exit 1'; \
364 <        for f in x $$MAKEFLAGS; do \
365 <          case $$f in \
307 <            *=* | --[!k]*);; \
308 <            *k*) failcom='fail=yes';; \
309 <          esac; \
310 <        done; \
311 <        dot_seen=no; \
312 <        case "$@" in \
313 <          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
314 <          *) list='$(SUBDIRS)' ;; \
315 <        esac; \
316 <        rev=''; for subdir in $$list; do \
317 <          if test "$$subdir" = "."; then :; else \
318 <            rev="$$subdir $$rev"; \
319 <          fi; \
320 <        done; \
321 <        rev="$$rev ."; \
322 <        target=`echo $@ | sed s/-recursive//`; \
323 <        for subdir in $$rev; do \
324 <          echo "Making $$target in $$subdir"; \
325 <          if test "$$subdir" = "."; then \
326 <            local_target="$$target-am"; \
327 <          else \
328 <            local_target="$$target"; \
329 <          fi; \
330 <          ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
331 <          || eval $$failcom; \
332 <        done && test -z "$$fail"
333 < tags-recursive:
334 <        list='$(SUBDIRS)'; for subdir in $$list; do \
335 <          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
336 <        done
337 < ctags-recursive:
338 <        list='$(SUBDIRS)'; for subdir in $$list; do \
339 <          test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
340 <        done
362 > ID: $(am__tagged_files)
363 >        $(am__define_uniq_tagged_files); mkid -fID $$unique
364 > tags: tags-recursive
365 > TAGS: tags
366  
367 < ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
343 <        list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
344 <        unique=`for i in $$list; do \
345 <            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
346 <          done | \
347 <          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
348 <              END { if (nonempty) { for (i in files) print i; }; }'`; \
349 <        mkid -fID $$unique
350 < tags: TAGS
351 <
352 < TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
353 <                $(TAGS_FILES) $(LISP)
367 > tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
368          set x; \
369          here=`pwd`; \
370          if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
# Line 366 | Line 380 | TAGS: tags-recursive $(HEADERS) $(SOURCE
380                set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
381            fi; \
382          done; \
383 <        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
370 <        unique=`for i in $$list; do \
371 <            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
372 <          done | \
373 <          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
374 <              END { if (nonempty) { for (i in files) print i; }; }'`; \
383 >        $(am__define_uniq_tagged_files); \
384          shift; \
385          if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
386            test -n "$$unique" || unique=$$empty_fix; \
# Line 383 | Line 392 | TAGS: tags-recursive $(HEADERS) $(SOURCE
392                $$unique; \
393            fi; \
394          fi
395 < ctags: CTAGS
396 < CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
397 <                $(TAGS_FILES) $(LISP)
398 <        list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
399 <        unique=`for i in $$list; do \
391 <            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
392 <          done | \
393 <          $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
394 <              END { if (nonempty) { for (i in files) print i; }; }'`; \
395 > ctags: ctags-recursive
396 >
397 > CTAGS: ctags
398 > ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
399 >        $(am__define_uniq_tagged_files); \
400          test -z "$(CTAGS_ARGS)$$unique" \
401            || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
402               $$unique
# Line 400 | Line 405 | GTAGS:
405          here=`$(am__cd) $(top_builddir) && pwd` \
406            && $(am__cd) $(top_srcdir) \
407            && gtags -i $(GTAGS_ARGS) "$$here"
408 + cscopelist: cscopelist-recursive
409 +
410 + cscopelist-am: $(am__tagged_files)
411 +        list='$(am__tagged_files)'; \
412 +        case "$(srcdir)" in \
413 +          [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
414 +          *) sdir=$(subdir)/$(srcdir) ;; \
415 +        esac; \
416 +        for i in $$list; do \
417 +          if test -f "$$i"; then \
418 +            echo "$(subdir)/$$i"; \
419 +          else \
420 +            echo "$$sdir/$$i"; \
421 +          fi; \
422 +        done >> $(top_builddir)/cscope.files
423  
424   distclean-tags:
425          -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
# Line 436 | Line 456 | distdir: $(DISTFILES)
456          done
457          @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
458            if test "$$subdir" = .; then :; else \
459 <            test -d "$(distdir)/$$subdir" \
460 <            || $(MKDIR_P) "$(distdir)/$$subdir" \
461 <            || exit 1; \
462 <          fi; \
443 <        done
444 <        @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
445 <          if test "$$subdir" = .; then :; else \
459 >            $(am__make_dryrun) \
460 >              || test -d "$(distdir)/$$subdir" \
461 >              || $(MKDIR_P) "$(distdir)/$$subdir" \
462 >              || exit 1; \
463              dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
464              $(am__relativize); \
465              new_distdir=$$reldir; \
# Line 477 | Line 494 | install-am: all-am
494  
495   installcheck: installcheck-recursive
496   install-strip:
497 <        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
498 <          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
499 <          `test -z '$(STRIP)' || \
500 <            echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
497 >        if test -z '$(STRIP)'; then \
498 >          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
499 >            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
500 >              install; \
501 >        else \
502 >          $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
503 >            install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
504 >            "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
505 >        fi
506   mostlyclean-generic:
507  
508   clean-generic:
# Line 558 | Line 580 | ps-am:
580  
581   uninstall-am:
582  
583 < .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
562 <        install-am install-strip tags-recursive
583 > .MAKE: $(am__recursive_targets) install-am install-strip
584  
585 < .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
586 <        all all-am check check-am clean clean-generic clean-libtool \
587 <        ctags ctags-recursive distclean distclean-generic \
588 <        distclean-libtool distclean-tags distdir dvi dvi-am html \
589 <        html-am info info-am install install-am install-data \
590 <        install-data-am install-dvi install-dvi-am install-exec \
591 <        install-exec-am install-html install-html-am install-info \
592 <        install-info-am install-man install-pdf install-pdf-am \
593 <        install-ps install-ps-am install-strip installcheck \
594 <        installcheck-am installdirs installdirs-am maintainer-clean \
595 <        maintainer-clean-generic mostlyclean mostlyclean-generic \
596 <        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
576 <        uninstall uninstall-am
585 > .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \
586 >        check-am clean clean-generic clean-libtool cscopelist-am ctags \
587 >        ctags-am distclean distclean-generic distclean-libtool \
588 >        distclean-tags distdir dvi dvi-am html html-am info info-am \
589 >        install install-am install-data install-data-am install-dvi \
590 >        install-dvi-am install-exec install-exec-am install-html \
591 >        install-html-am install-info install-info-am install-man \
592 >        install-pdf install-pdf-am install-ps install-ps-am \
593 >        install-strip installcheck installcheck-am installdirs \
594 >        installdirs-am maintainer-clean maintainer-clean-generic \
595 >        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
596 >        ps ps-am tags tags-am uninstall uninstall-am
597  
598  
599   # Tell versions [3.59,3.63) of GNU make to not export all variables.

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)