~ubuntu-branches/ubuntu/saucy/autoconf/saucy

« back to all changes in this revision

Viewing changes to man/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant
  • Date: 2009-02-10 11:19:19 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090210111919-em4fvdv91rsn40sb
Tags: 2.63-2ubuntu1
* Merge from Debian experimental, remaining changes:
  * bin/autoreconf.in: Check whether libtoolize supports --install, if it
    does, libtoolize is safe to run at all times since it will not install
    new files unless --install is passed to it as well.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.10 from Makefile.am.
 
1
# Makefile.in generated by automake 1.10.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
 
# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 
5
# 2003, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
6
6
# This Makefile.in is free software; the Free Software Foundation
7
7
# gives unlimited permission to copy and/or distribute it,
8
8
# with or without modifications, as long as this notice is preserved.
15
15
@SET_MAKE@
16
16
 
17
17
# Make Autoconf man pages.
 
18
 
 
19
# Copyright (C) 2001, 2004-2008 Free Software Foundation, Inc.
 
20
 
 
21
# This program is free software: you can redistribute it and/or modify
 
22
# it under the terms of the GNU General Public License as published by
 
23
# the Free Software Foundation, either version 3 of the License, or
 
24
# (at your option) any later version.
 
25
 
 
26
# This program is distributed in the hope that it will be useful,
 
27
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
28
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
29
# GNU General Public License for more details.
 
30
 
 
31
# You should have received a copy of the GNU General Public License
 
32
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
33
VPATH = @srcdir@
19
34
pkgdatadir = $(datadir)/@PACKAGE@
20
35
pkglibdir = $(libdir)/@PACKAGE@
36
51
        $(srcdir)/Makefile.in
37
52
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
38
53
am__aclocal_m4_deps = $(top_srcdir)/m4/m4.m4 \
39
 
        $(top_srcdir)/configure.ac
 
54
        $(top_srcdir)/m4/make-case.m4 $(top_srcdir)/configure.ac
40
55
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
41
56
        $(ACLOCAL_M4)
42
57
mkinstalldirs = $(install_sh) -d
129
144
srcdir = @srcdir@
130
145
sysconfdir = @sysconfdir@
131
146
target_alias = @target_alias@
 
147
top_build_prefix = @top_build_prefix@
132
148
top_builddir = @top_builddir@
133
149
top_srcdir = @top_srcdir@
134
150
dist_man_MANS = \
145
161
EXTRA_DIST = $(dist_man_MANS:.1=.x) common.x
146
162
MAINTAINERCLEANFILES = $(dist_man_MANS)
147
163
 
148
 
# Depend on configure.ac to get version number changes.
149
 
common_dep = $(top_srcdir)/configure.ac $(srcdir)/common.x
 
164
# Depend on .version to get version number changes.
 
165
common_dep = $(top_srcdir)/.version $(srcdir)/common.x
150
166
binsrcdir = $(top_srcdir)/bin
151
167
remove_time_stamp = 's/^\(\.TH[^"]*"[^"]*"[^"]*\)"[^"]*"/\1/'
152
168
MOSTLYCLEANFILES = $(srcdir)/*.t
377
393
$(srcdir)/config.sub.1:   $(top_srcdir)/build-aux/config.sub
378
394
 
379
395
.x.1:
380
 
        @program=`expr "/$*" : '.*/\(.*\)'` && \
381
 
        case $$program in \
382
 
        config.*) ;; \
383
 
        *) \
384
 
          for dir in $(top_builddir)/bin $(top_builddir)/tests; do \
385
 
            echo cd $$dir '&&' $(MAKE) $(AM_MAKEFLAGS) $$program && \
386
 
            (cd $$dir && $(MAKE) $(AM_MAKEFLAGS) $$program) || exit; \
387
 
          done;; \
388
 
        esac
389
 
        echo "Updating man page $@"
 
396
        @echo "Updating man page $@"
390
397
        PATH="$(top_builddir)/tests$(PATH_SEPARATOR)$(top_srcdir)/build-aux$(PATH_SEPARATOR)$$PATH"; \
391
398
        export PATH; \
392
399
        $(HELP2MAN) \
393
400
            --include=$*.x \
394
401
            --include=$(srcdir)/common.x \
 
402
            --source='$(PACKAGE_STRING)' \
395
403
            --output=$@.t `echo '$*' | sed 's,.*/,,'`
396
404
        if sed $(remove_time_stamp) $@ >$@a.t 2>/dev/null && \
397
405
           sed $(remove_time_stamp) $@.t | cmp $@a.t - >/dev/null 2>&1; then \