~ubuntu-branches/ubuntu/gutsy/vorbis-tools/gutsy

« back to all changes in this revision

Viewing changes to ogg123/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
 
bin_PROGRAMS = ogg123
 
5
datadir = @datadir@
 
6
localedir = $(datadir)/locale
 
7
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
 
8
 
6
9
docdir = $(datadir)/doc/$(PACKAGE)-$(VERSION)
7
 
doc_DATA = ogg123rc-example
8
10
mandir = @MANDIR@
9
 
man_MANS = ogg123.1
 
11
 
 
12
bin_PROGRAMS = ogg123
10
13
 
11
14
INCLUDES = @OGG_CFLAGS@ @VORBIS_CFLAGS@ @AO_CFLAGS@ @CURL_CFLAGS@ \
12
 
           @PTHREAD_CFLAGS@ @SHARE_CFLAGS@
13
 
 
14
 
ogg123_LDADD = @VORBISFILE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ @AO_LIBS@ \
15
 
               @SOCKET_LIBS@ @SHARE_LIBS@ @CURL_LIBS@ @PTHREAD_CFLAGS@ \
16
 
               @PTHREAD_LIBS@
17
 
ogg123_DEPENDENCIES = @SHARE_LIBS@
 
15
           @PTHREAD_CFLAGS@ @SHARE_CFLAGS@ @I18N_CFLAGS@
 
16
 
 
17
ogg123_LDADD = @OGG123_FLAC_OBJS@ @OGG123_SPEEX_OBJS@ @SHARE_LIBS@ \
 
18
               @VORBISFILE_LIBS@ @VORBIS_LIBS@ @OGG_LIBS@ @AO_LIBS@ \
 
19
               @SOCKET_LIBS@ @LIBICONV@ @CURL_LIBS@ @PTHREAD_CFLAGS@ \
 
20
               @PTHREAD_LIBS@ @I18N_LIBS@ @FLAC_LIBS@ @SPEEX_LIBS@
 
21
 
 
22
ogg123_DEPENDENCIES = @OGG123_FLAC_OBJS@ @OGG123_SPEEX_OBJS@ @SHARE_LIBS@
18
23
ogg123_SOURCES = audio.c buffer.c callbacks.c \
19
 
                 cfgfile_options.c cmdline_options.c \
20
 
                 file_transport.c format.c http_transport.c \
21
 
                 ogg123.c oggvorbis_format.c status.c transport.c     \
22
 
                 audio.h buffer.h callbacks.h compat.h \
23
 
                 cfgfile_options.h cmdline_options.h \
24
 
                 format.h ogg123.h status.h transport.h
25
 
 
26
 
EXTRA_DIST = $(man_MANS) $(doc_DATA)
 
24
                cfgfile_options.c cmdline_options.c \
 
25
                file_transport.c format.c http_transport.c \
 
26
                ogg123.c oggvorbis_format.c playlist.c \
 
27
                status.c transport.c  vorbis_comments.c \
 
28
                audio.h buffer.h callbacks.h compat.h \
 
29
                cfgfile_options.h cmdline_options.h \
 
30
                format.h ogg123.h playlist.h status.h \
 
31
                transport.h vorbis_comments.h
 
32
 
 
33
man_MANS = ogg123.1
 
34
doc_DATA = ogg123rc-example
 
35
 
 
36
EXTRA_ogg123_SOURCES = flac_format.c easyflac.c easyflac.h speex_format.c \
 
37
                $(man_MANS) $(doc_DATA)
27
38
 
28
39
debug:
29
40
        $(MAKE) all CFLAGS="@DEBUG@"