~ubuntu-branches/ubuntu/oneiric/libtorrent-rasterbar/oneiric

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Starr-Bochicchio
  • Date: 2010-08-10 12:57:25 UTC
  • mfrom: (1.3.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810125725-i2o9iblow20w7qde
Tags: 0.15.1-0ubuntu1
* New upstream point release.

* New package libtorrent-rasterbar6 (bump up library soname). (LP: #615950)
 - Must Conflict/Replace libtorrent-rasterbar5 (= 0.15.0-0ubuntu1) or it will
   fail to install trying to overwrite '/usr/lib/libtorrent-rasterbar.so.6.0.0'

* Sync on git.debian.org/collab-maint/libtorrent-rasterbar.git:
 - debian/{control,rules}: Bump debhelper build-dep to (>= 7.4.10)
   and pass to dh in order to enable parallel build support.
 - debian/watch: Use googlecode.debian.net redirector.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.in generated by automake 1.11.1 from Makefile.am.
 
1
# Makefile.in generated by automake 1.11 from Makefile.am.
2
2
# @configure_input@
3
3
 
4
4
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
42
42
        $(srcdir)/libtorrent-rasterbar.pc.in $(top_srcdir)/configure \
43
43
        AUTHORS COPYING ChangeLog NEWS build-aux/config.guess \
44
44
        build-aux/config.sub build-aux/depcomp build-aux/install-sh \
45
 
        build-aux/ltmain.sh build-aux/missing config.guess config.sub \
46
 
        depcomp install-sh ltmain.sh missing
 
45
        build-aux/ltmain.sh build-aux/missing
47
46
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
48
47
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_boost_base.m4 \
49
48
        $(top_srcdir)/m4/ax_boost_filesystem.m4 \
309
308
#DISTCHECK_CONFIGURE_FLAGS = --enable-tests
310
309
SUBDIRS = include/libtorrent zlib src examples test bindings
311
310
DOCS_IMAGES = \
312
 
  docs/acquasition.jpg            \
313
311
  docs/arctic_thumb.png           \
314
312
  docs/bitbuddy_thumb.jpg         \
315
313
  docs/bitfox.png                 \
479
477
#     (which will cause the Makefiles to be regenerated when you run `make');
480
478
# (2) otherwise, pass the desired values on the `make' command line.
481
479
$(RECURSIVE_TARGETS):
482
 
        @fail= failcom='exit 1'; \
 
480
        @failcom='exit 1'; \
483
481
        for f in x $$MAKEFLAGS; do \
484
482
          case $$f in \
485
483
            *=* | --[!k]*);; \
504
502
        fi; test -z "$$fail"
505
503
 
506
504
$(RECURSIVE_CLEAN_TARGETS):
507
 
        @fail= failcom='exit 1'; \
 
505
        @failcom='exit 1'; \
508
506
        for f in x $$MAKEFLAGS; do \
509
507
          case $$f in \
510
508
            *=* | --[!k]*);; \
668
666
          fi; \
669
667
        done
670
668
        -test -n "$(am__skip_mode_fix)" \
671
 
        || find "$(distdir)" -type d ! -perm -755 \
672
 
                -exec chmod u+rwx,go+rx {} \; -o \
 
669
        || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
673
670
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
674
671
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
675
672
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
713
710
distcheck: dist
714
711
        case '$(DIST_ARCHIVES)' in \
715
712
        *.tar.gz*) \
716
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
 
713
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
717
714
        *.tar.bz2*) \
718
 
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
 
715
          bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
719
716
        *.tar.lzma*) \
720
 
          lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
 
717
          unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
721
718
        *.tar.xz*) \
722
719
          xz -dc $(distdir).tar.xz | $(am__untar) ;;\
723
720
        *.tar.Z*) \
724
721
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
725
722
        *.shar.gz*) \
726
 
          GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
 
723
          GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
727
724
        *.zip*) \
728
725
          unzip $(distdir).zip ;;\
729
726
        esac