~ubuntu-branches/ubuntu/wily/bug-buddy/wily

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): David Weinehall
  • Date: 2010-03-29 14:54:39 UTC
  • mfrom: (1.1.30 upstream) (3.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100329145439-i7qylnitfr51ztv1
Tags: 2.30.0+dfsg-1
* New upstream release.
* debian/patches/99_ltmain_as-needed.patch:
  - refreshed.
* debian/control.in:
  - Update Standards-Version to 3.8.4, no additional changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11.1 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
195
195
PACKAGE_NAME = @PACKAGE_NAME@
196
196
PACKAGE_STRING = @PACKAGE_STRING@
197
197
PACKAGE_TARNAME = @PACKAGE_TARNAME@
 
198
PACKAGE_URL = @PACKAGE_URL@
198
199
PACKAGE_VERSION = @PACKAGE_VERSION@
199
200
PATH_SEPARATOR = @PATH_SEPARATOR@
200
201
PKG_CONFIG = @PKG_CONFIG@
359
360
#     (which will cause the Makefiles to be regenerated when you run `make');
360
361
# (2) otherwise, pass the desired values on the `make' command line.
361
362
$(RECURSIVE_TARGETS):
362
 
        @failcom='exit 1'; \
 
363
        @fail= failcom='exit 1'; \
363
364
        for f in x $$MAKEFLAGS; do \
364
365
          case $$f in \
365
366
            *=* | --[!k]*);; \
384
385
        fi; test -z "$$fail"
385
386
 
386
387
$(RECURSIVE_CLEAN_TARGETS):
387
 
        @failcom='exit 1'; \
 
388
        @fail= failcom='exit 1'; \
388
389
        for f in x $$MAKEFLAGS; do \
389
390
          case $$f in \
390
391
            *=* | --[!k]*);; \
548
549
          fi; \
549
550
        done
550
551
        -test -n "$(am__skip_mode_fix)" \
551
 
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
 
552
        || find "$(distdir)" -type d ! -perm -755 \
 
553
                -exec chmod u+rwx,go+rx {} \; -o \
552
554
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
553
555
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
554
556
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
591
593
distcheck: dist
592
594
        case '$(DIST_ARCHIVES)' in \
593
595
        *.tar.gz*) \
594
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
 
596
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
595
597
        *.tar.bz2*) \
596
 
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
 
598
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
597
599
        *.tar.lzma*) \
598
 
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
 
600
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
599
601
        *.tar.xz*) \
600
602
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
601
603
        *.tar.Z*) \
602
604
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
603
605
        *.shar.gz*) \
604
 
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
 
606
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
605
607
        *.zip*) \
606
608
          unzip $(distdir).zip ;;\
607
609
        esac