cf3b9b953d1e5f622918f41400ac755e31428e78
[platform/upstream/flac.git] / src / Makefile.lite
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008  Josh Coalson
3 #
4 #  This file is part the FLAC project.  FLAC is comprised of several
5 #  components distributed under difference licenses.  The codec libraries
6 #  are distributed under Xiph.Org's BSD-like license (see the file
7 #  COPYING.Xiph in this distribution).  All other programs, libraries, and
8 #  plugins are distributed under the GPL (see COPYING.GPL).  The documentation
9 #  is distributed under the Gnu FDL (see COPYING.FDL).  Each file in the
10 #  FLAC distribution contains at the top the terms under which it may be
11 #  distributed.
12 #
13 #  Since this particular file is relevant to all components of FLAC,
14 #  it may be distributed under the Xiph.Org license, which is the least
15 #  restrictive of those mentioned above.  See the file COPYING.Xiph in this
16 #  distribution.
17
18 ifeq ($(OS),Darwin)
19 EXTRA_TARGETS = 
20 else
21 EXTRA_TARGETS = plugin_xmms
22 endif
23
24 .PHONY: all flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams
25 all: flac libFLAC libFLAC++ metaflac plugin_common $(EXTRA_TARGETS) share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams
26
27 DEFAULT_CONFIG = release
28
29 CONFIG = $(DEFAULT_CONFIG)
30
31 debug   : CONFIG = debug
32 valgrind: CONFIG = valgrind
33 release : CONFIG = release
34
35 debug   : all
36 valgrind: all
37 release : all
38
39 flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams:
40         (cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
41
42 clean:
43         -(cd flac ; $(MAKE) -f Makefile.lite clean)
44         -(cd libFLAC ; $(MAKE) -f Makefile.lite clean)
45         -(cd libFLAC++ ; $(MAKE) -f Makefile.lite clean)
46         -(cd metaflac ; $(MAKE) -f Makefile.lite clean)
47         -(cd plugin_common ; $(MAKE) -f Makefile.lite clean)
48         -(cd plugin_xmms ; $(MAKE) -f Makefile.lite clean)
49         -(cd share ; $(MAKE) -f Makefile.lite clean)
50         -(cd test_grabbag ; $(MAKE) -f Makefile.lite clean)
51         -(cd test_libs_common ; $(MAKE) -f Makefile.lite clean)
52         -(cd test_libFLAC ; $(MAKE) -f Makefile.lite clean)
53         -(cd test_libFLAC++ ; $(MAKE) -f Makefile.lite clean)
54         -(cd test_seeking ; $(MAKE) -f Makefile.lite clean)
55         -(cd test_streams ; $(MAKE) -f Makefile.lite clean)
56
57 flac: libFLAC share
58 libFLAC++: libFLAC
59 metaflac: libFLAC share
60 plugin_common: libFLAC
61 plugin_xmms: libFLAC plugin_common
62 share: libFLAC
63 test_grabbag: share
64 test_libFLAC++: libFLAC libFLAC++ test_libs_common
65 test_libFLAC: libFLAC test_libs_common
66 test_seeking: libFLAC
67 test_streams: libFLAC