~ubuntu-branches/ubuntu/utopic/cdparanoia/utopic

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Rogério Brito, Rogério Brito, TANIGUCHI Takaki
  • Date: 2010-11-06 14:53:55 UTC
  • mfrom: (3.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20101106145355-93nm5l8g6nq8viyw
Tags: 3.10.2+debian-10
[ Rogério Brito ]
* Preparation to format "3.0 (quilt)".
* Remove README.source (void effect with format 3.0).
* Refresh patches to avoid potential problems with the buildd's and
  dpkg's implementation of quilt.
* Include control on compilation and linking flags.
* Include extra fixes for spelling in the patch.
* Update 01-typos-and-spelling.patch to match DEP-3
* Add an option to not suppress progress bar when stderr is
  redirected. Closes: #589112.
* Split build-dependencies for VCS-friendliness
* Remove duplicate field in the binary packages
* Detail some of the long descriptions so that they are not equal
  anymore
* Update 01-typos-and-spelling.patch with some other spelling errors
* Fix some more typos. Closes: #552209, #572482.

[ TANIGUCHI Takaki ]
* debian/watch: add new control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 
33
33
ifeq ($(STATIC),TRUE)
34
34
        LIBS = interface/libcdda_interface.a paranoia/libcdda_paranoia.a \
35
 
                -static -lm -lrt
 
35
                -static -lm -lrt @LIBCAM@
36
36
        LIBDEP = interface/libcdda_interface.a paranoia/libcdda_paranoia.a
37
37
else
38
 
        LIBS = -lcdda_interface -lcdda_paranoia -lm -lrt
 
38
        LIBS = -lcdda_interface -lcdda_paranoia -lm -lrt @LIBCAM@
39
39
        LIBDEP = interface/libcdda_interface.so paranoia/libcdda_paranoia.so
40
40
endif
41
41