~ubuntu-branches/ubuntu/precise/vorbis-tools/precise

« back to all changes in this revision

Viewing changes to ogginfo/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jesus Climent
  • Date: 2005-04-10 09:22:24 UTC
  • mfrom: (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050410092224-xtukpa3qghghhjje
Tags: 1.0.1-1.3
* Authorized NMU.
* Modified alsa to mention alsa09 (although the device might be nowadays
  alsa, back, since alsa1.0 has been already released). (Closes: #258286)
* Modified the manpage/help message for vorbiscomment to make it a bit more
  userfiendly: Closes: #252531.
* Added oggdec to the long description field, so that it triggers apt-cache
  searches: Closes: #274894.
* Typos in manpages: Closes: #302150.
* Escaped dashes in manpage: Closes: #264365.
* Quiet option is actually with -Q, not -q (Closes: #211289) Reported
  upstream but patched for Debian.
* Change input.wav with inputfile, since we accept flac-formated files:
  Closes: #262509.
* Translation bits:
  * Updated translation hu.po: Closes: #272037.
  * French translation correction: Encodage -> Codage (Closes: #248431).
  * debian/rules: remove .gmo's to avoid clash with uploaded tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
AUTOMAKE_OPTIONS = foreign
4
4
 
 
5
mans = ogginfo.1
 
6
ogginfosources = ogginfo2.c
 
7
 
 
8
datadir = @datadir@
 
9
localedir = $(datadir)/locale
 
10
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
 
11
 
5
12
bin_PROGRAMS = ogginfo
6
13
mandir = @MANDIR@
7
 
man_MANS = ogginfo.1
8
 
 
9
 
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@ @SHARE_CFLAGS@
10
 
 
11
 
ogginfo_LDADD = @VORBIS_LIBS@ @OGG_LIBS@ @LIBICONV@ @SHARE_LIBS@
 
14
man_MANS = $(mans)
 
15
 
 
16
INCLUDES = @SHARE_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@ @I18N_CFLAGS@
 
17
 
 
18
ogginfo_LDADD = @SHARE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ @LIBICONV@ @I18N_LIBS@
12
19
ogginfo_DEPENDENCIES = @SHARE_LIBS@
13
20
 
14
 
ogginfo_SOURCES = ogginfo.c
15
 
 
16
 
EXTRA_DIST = $(man_MANS)
 
21
ogginfo_SOURCES = $(ogginfosources)
 
22
EXTRA_ogginfo_SOURCES = $(man_MANS) 
17
23
 
18
24
debug:
19
25
        $(MAKE) all CFLAGS="@DEBUG@"