Enable utf8 I/O stuff when compiling with MinGW.
[platform/upstream/flac.git] / src / libFLAC / Makefile.am
1 #  libFLAC - Free Lossless Audio Codec library
2 #  Copyright (C) 2001,2002,2003,2004,2005,2006,2007,2008,2009  Josh Coalson
3 #
4 #  Redistribution and use in source and binary forms, with or without
5 #  modification, are permitted provided that the following conditions
6 #  are met:
7 #
8 #  - Redistributions of source code must retain the above copyright
9 #  notice, this list of conditions and the following disclaimer.
10 #
11 #  - Redistributions in binary form must reproduce the above copyright
12 #  notice, this list of conditions and the following disclaimer in the
13 #  documentation and/or other materials provided with the distribution.
14 #
15 #  - Neither the name of the Xiph.org Foundation nor the names of its
16 #  contributors may be used to endorse or promote products derived from
17 #  this software without specific prior written permission.
18 #
19 #  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 #  ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 #  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 #  A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23 #  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 #  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 #  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 #  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 #  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 #  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 #  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30
31 AM_CPPFLAGS = -I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include
32 lib_LTLIBRARIES = libFLAC.la
33 noinst_LTLIBRARIES = libFLAC-static.la
34 if DEBUG
35 DEBUGCFLAGS = -DFLAC__OVERFLOW_DETECT
36 endif
37
38 # FIXME: The following logic should be part of configure, not of Makefile.am
39
40 if FLaC__CPU_PPC
41 # The -force_cpusubtype_ALL is needed to insert a ppc64 instruction
42 # into cpu.c with an asm().
43 if FLaC__SYS_DARWIN
44 #@@@ PPC optimizations temporarily disabled
45 CPUCFLAGS = -faltivec -force_cpusubtype_ALL -DFLAC__NO_ASM
46 else
47 # Linux-gcc for PPC does not have -force_cpusubtype_ALL, it is Darwin-specific
48 CPUCFLAGS =
49 if FLaC__CPU_PPC_SPE
50 else
51 CPUCFLAGS += -maltivec -mabi=altivec
52 endif
53 #@@@ PPC optimizations temporarily disabled
54 CPUCFLAGS += -DFLAC__NO_ASM
55 endif
56 endif
57
58 AM_CFLAGS = $(DEBUGCFLAGS) $(CPUCFLAGS) @OGG_CFLAGS@
59
60 if FLaC__NO_ASM
61 else
62 if FLaC__CPU_IA32
63 if FLaC__HAS_NASM
64 ARCH_SUBDIRS = ia32
65 LOCAL_EXTRA_LIBADD = ia32/libFLAC-asm.la
66 endif
67 endif
68 if FLaC__CPU_PPC
69 ARCH_SUBDIRS = ppc
70 if FLaC__HAS_AS__TEMPORARILY_DISABLED
71 if FLaC__CPU_PPC_SPE
72 else
73 LOCAL_EXTRA_LIBADD = ppc/as/libFLAC-asm.la
74 LOCAL_EXTRA_LDFLAGS = "-Wl,-read_only_relocs,warning"
75 else
76 if FLaC__HAS_GAS__TEMPORARILY_DISABLED
77 LOCAL_EXTRA_LIBADD = ppc/gas/libFLAC-asm.la
78 LOCAL_EXTRA_LDFLAGS = ""
79 endif
80 endif
81 endif
82 endif
83 endif
84
85 if OS_IS_WINDOWS
86 win_utf8_lib = $(top_builddir)/src/share/win_utf8_io/libwin_utf8_io.la
87 endif
88
89 libFLAC_la_LIBADD = $(win_utf8_lib) $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm
90
91 SUBDIRS = $(ARCH_SUBDIRS) include .
92
93 m4datadir = $(datadir)/aclocal
94 m4data_DATA = libFLAC.m4
95
96 pkgconfigdir = $(libdir)/pkgconfig
97 pkgconfig_DATA = flac.pc
98
99 EXTRA_DIST = \
100         Makefile.lite \
101         flac.pc.in \
102         libFLAC_dynamic.vcproj \
103         libFLAC_static.vcproj \
104         libFLAC.m4
105
106 if FLaC__HAS_OGG
107 extra_ogg_sources = \
108         ogg_decoder_aspect.c \
109         ogg_encoder_aspect.c \
110         ogg_helper.c \
111         ogg_mapping.c
112 endif
113
114 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention
115 libFLAC_la_LDFLAGS = -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@
116
117 libFLAC_sources = \
118         bitmath.c \
119         bitreader.c \
120         bitwriter.c \
121         cpu.c \
122         crc.c \
123         fixed.c \
124         float.c \
125         format.c \
126         lpc.c \
127         md5.c \
128         memory.c \
129         metadata_iterators.c \
130         metadata_object.c \
131         stream_decoder.c \
132         stream_encoder.c \
133         stream_encoder_framing.c \
134         window.c \
135         $(extra_ogg_sources)
136
137 libFLAC_la_SOURCES = $(libFLAC_sources)
138
139 # needed for test_libFLAC
140 libFLAC_static_la_LIBADD = $(LOCAL_EXTRA_LIBADD)
141 libFLAC_static_la_SOURCES = $(libFLAC_sources)