~ubuntu-branches/ubuntu/precise/flac/precise-updates

« back to all changes in this revision

Viewing changes to Makefile.lite

  • Committer: Bazaar Package Importer
  • Author(s): Joshua Kwan
  • Date: 2007-05-29 22:56:36 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070529225636-ljeff8xxip09qaap
Tags: 1.1.4-1
* New upstream release. closes: #405167, #411311
  - libOggFLAC and libOggFLAC++ have been merged into libFLAC, so
    remove their corresponding packages.
  - Because of the API changes required to effect the above, there has
    been yet another soname bump. libflac7 -> libflac8 and
    libflac++5 -> libflac++6. Emails have been dispatched to the
    maintainers of dependent packages.
* Some notes on patches that were removed:
  - 02_stdin_stdout, 06_manpage_mention_utf8_convert: merged upstream
  - 08_manpage_warnings: Upstream has changed the manpage so it defintely
    can't fit in in 80 cols, so just forget about it. We'll live.
  - 05_eof_warnings_are_errors: Upstream decided to add a -w option to
    flac to treat all warnings as errors. I am going to defer to that
    for now, but if people think it's stupid let me know and I'll port
    the patch forward.
  - 04_stack_smasher: was a backport from 1.1.3, so it's obsolete.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#  FLAC - Free Lossless Audio Codec
2
 
#  Copyright (C) 2001,2002,2003,2004,2005  Josh Coalson
 
2
#  Copyright (C) 2001,2002,2003,2004,2005,2006,2007  Josh Coalson
3
3
#
4
4
#  This file is part the FLAC project.  FLAC is comprised of several
5
5
#  components distributed under difference licenses.  The codec libraries
30
30
 
31
31
topdir = .
32
32
 
33
 
.PHONY: all doc src libFLAC libFLAC++ libOggFLAC libOggFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_libOggFLAC test_libOggFLAC++ test_seeking test_streams
 
33
.PHONY: all doc src libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams
34
34
all: doc src
35
35
 
36
36
DEFAULT_CONFIG = release
57
57
libFLAC++: libFLAC
58
58
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
59
59
 
60
 
libOggFLAC: libFLAC
61
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
62
 
 
63
 
libOggFLAC++: libFLAC
64
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
65
 
 
66
60
share: libFLAC
67
61
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
68
62
 
69
 
flac: libFLAC libOggFLAC share
 
63
flac: libFLAC share
70
64
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
71
65
 
72
66
metaflac: libFLAC share
78
72
plugin_xmms: libFLAC plugin_common
79
73
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
80
74
 
81
 
test_seeking: libFLAC libOggFLAC
 
75
test_seeking: libFLAC
82
76
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
83
77
 
84
78
test_streams: libFLAC
93
87
test_libFLAC++: libFLAC libFLAC++
94
88
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
95
89
 
96
 
test_libOggFLAC: libFLAC libOggFLAC
97
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
98
 
 
99
 
test_libOggFLAC++: libFLAC libOggFLAC libOggFLAC++
100
 
        (cd src/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
101
 
 
102
90
test: debug
103
91
        (cd test ; $(MAKE) -f Makefile.lite debug)
104
92