test/*.sh : Fix MALLOC_PERTURB initialization.
[platform/upstream/flac.git] / src / Makefile.lite
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001-2009  Josh Coalson
3 #  Copyright (C) 2011-2013  Xiph.Org Foundation
4 #
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
12 #  distributed.
13 #
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
17 #  distribution.
18
19 topdir = ..
20
21 include $(topdir)/build/config.mk
22
23 ifeq ($(OS),Darwin)
24     EXTRA_TARGETS =
25 else
26 ifeq ($(PROC),x86_64)
27     EXTRA_TARGETS =
28 else
29     EXTRA_TARGETS = plugin_xmms
30 endif
31 endif
32
33 .PHONY: all flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils flacdiff flactimer
34 all: flac libFLAC libFLAC++ metaflac plugin_common $(EXTRA_TARGETS) share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils
35
36 DEFAULT_CONFIG = release
37
38 CONFIG = $(DEFAULT_CONFIG)
39
40 debug   : CONFIG = debug
41 valgrind: CONFIG = valgrind
42 release : CONFIG = release
43
44 debug   : all
45 valgrind: all
46 release : all
47
48 all: flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams utils
49
50 flac libFLAC libFLAC++ metaflac plugin_common plugin_xmms share test_grabbag test_libs_common test_libFLAC test_libFLAC++ test_seeking test_streams:
51         (cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
52
53 flacdiff flactimer:
54         (cd utils/$@ ; $(MAKE) -f Makefile.lite $(CONFIG))
55
56 clean:
57         -(cd flac ; $(MAKE) -f Makefile.lite clean)
58         -(cd libFLAC ; $(MAKE) -f Makefile.lite clean)
59         -(cd libFLAC++ ; $(MAKE) -f Makefile.lite clean)
60         -(cd metaflac ; $(MAKE) -f Makefile.lite clean)
61         -(cd plugin_common ; $(MAKE) -f Makefile.lite clean)
62         -(cd plugin_xmms ; $(MAKE) -f Makefile.lite clean)
63         -(cd share ; $(MAKE) -f Makefile.lite clean)
64         -(cd test_grabbag ; $(MAKE) -f Makefile.lite clean)
65         -(cd test_libs_common ; $(MAKE) -f Makefile.lite clean)
66         -(cd test_libFLAC ; $(MAKE) -f Makefile.lite clean)
67         -(cd test_libFLAC++ ; $(MAKE) -f Makefile.lite clean)
68         -(cd test_seeking ; $(MAKE) -f Makefile.lite clean)
69         -(cd test_streams ; $(MAKE) -f Makefile.lite clean)
70         -(cd utils/flacdiff ; $(MAKE) -f Makefile.lite clean)
71         -(cd utils/flactimer ; $(MAKE) -f Makefile.lite clean)
72
73 include $(topdir)/Makefile.deps