Purge old un-maintained MSVC 6 project files.
[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 libFLAC_la_LIBADD = $(LOCAL_EXTRA_LIBADD) @OGG_LIBS@ -lm
86
87 SUBDIRS = $(ARCH_SUBDIRS) include .
88
89 m4datadir = $(datadir)/aclocal
90 m4data_DATA = libFLAC.m4
91
92 pkgconfigdir = $(libdir)/pkgconfig
93 pkgconfig_DATA = flac.pc
94
95 EXTRA_DIST = \
96         Makefile.lite \
97         flac.pc.in \
98         libFLAC_dynamic.vcproj \
99         libFLAC_static.vcproj \
100         libFLAC.m4
101
102 if FLaC__HAS_OGG
103 extra_ogg_sources = \
104         ogg_decoder_aspect.c \
105         ogg_encoder_aspect.c \
106         ogg_helper.c \
107         ogg_mapping.c
108 endif
109 # see 'http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning' for numbering convention
110 libFLAC_la_LDFLAGS = -version-info 11:0:3 $(LOCAL_EXTRA_LDFLAGS) @LT_NO_UNDEFINED@
111
112 libFLAC_sources = \
113         bitmath.c \
114         bitreader.c \
115         bitwriter.c \
116         cpu.c \
117         crc.c \
118         fixed.c \
119         float.c \
120         format.c \
121         lpc.c \
122         md5.c \
123         memory.c \
124         metadata_iterators.c \
125         metadata_object.c \
126         stream_decoder.c \
127         stream_encoder.c \
128         stream_encoder_framing.c \
129         window.c \
130         $(extra_ogg_sources)
131
132 libFLAC_la_SOURCES = $(libFLAC_sources)
133
134 # needed for test_libFLAC
135 libFLAC_static_la_LIBADD = $(LOCAL_EXTRA_LIBADD)
136 libFLAC_static_la_SOURCES = $(libFLAC_sources)