1 # FLAC - Free Lossless Audio Codec
2 # Copyright (C) 2001-2009 Josh Coalson
3 # Copyright (C) 2011-2013 Xiph.Org Foundation
5 # This file is part the FLAC project. FLAC is comprised of several
6 # components distributed under different licenses. The codec libraries
7 # are distributed under Xiph.Org's BSD-like license (see the file
8 # COPYING.Xiph in this distribution). All other programs, libraries, and
9 # plugins are distributed under the GPL (see COPYING.GPL). The documentation
10 # is distributed under the Gnu FDL (see COPYING.FDL). Each file in the
11 # FLAC distribution contains at the top the terms under which it may be
14 # Since this particular file is relevant to all components of FLAC,
15 # it may be distributed under the Xiph.Org license, which is the least
16 # restrictive of those mentioned above. See the file COPYING.Xiph in this
24 # all : build all libraries and programs in the default configuration (currently 'release')
25 # debug : build all libraries and programs in debug mode
26 # valgrind: build all libraries and programs in debug mode, dynamically linked and ready for valgrind
27 # release : build all libraries and programs in release mode
28 # test : run the unit and stream tests
29 # clean : remove all non-distro files
34 .PHONY: all doc src examples libFLAC libFLAC++ share plugin_common plugin_xmms flac metaflac test_grabbag test_libFLAC test_libFLAC++ test_seeking test_streams utils flacdiff flactimer
37 DEFAULT_CONFIG = release
39 CONFIG = $(DEFAULT_CONFIG)
41 debug : CONFIG = debug
42 valgrind: CONFIG = valgrind
43 release : CONFIG = release
50 (cd $@ && $(MAKE) -f Makefile.lite)
53 (cd $@ && $(MAKE) -f Makefile.lite $(CONFIG))
55 libFLAC libFLAC++ share flac metaflac plugin_common plugin_xmms test_libs_common test_seeking test_streams test_grabbag test_libFLAC test_libFLAC++:
56 (cd src/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
59 (cd src/utils/$@ && $(MAKE) -f Makefile.lite $(CONFIG))
62 (cd test && $(MAKE) -f Makefile.lite debug)
65 (cd test && $(MAKE) -f Makefile.lite valgrind)
68 (cd test && $(MAKE) -f Makefile.lite release)
71 -(cd doc && $(MAKE) -f Makefile.lite clean)
72 -(cd src && $(MAKE) -f Makefile.lite clean)
73 -(cd examples && $(MAKE) -f Makefile.lite clean)
74 -(cd test && $(MAKE) -f Makefile.lite clean)
76 examples: libFLAC libFLAC++ share
77 include $(topdir)/Makefile.deps