Josh Coalson | 6b05bc5 | 2001-06-08 00:13:21 +0000 | [diff] [blame] | 1 | # libFLAC - Free Lossless Audio Codec library |
| 2 | # Copyright (C) 2001 Josh Coalson |
| 3 | # |
| 4 | # This library is free software; you can redistribute it and/or |
| 5 | # modify it under the terms of the GNU Library General Public |
| 6 | # License as published by the Free Software Foundation; either |
| 7 | # version 2 of the License, or (at your option) any later version. |
| 8 | # |
| 9 | # This library is distributed in the hope that it will be useful, |
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | # Library General Public License for more details. |
| 13 | # |
| 14 | # You should have received a copy of the GNU Library General Public |
| 15 | # License along with this library; if not, write to the |
| 16 | # Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 17 | # Boston, MA 02111-1307, USA. |
| 18 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 19 | # |
| 20 | # GNU makefile |
| 21 | # |
| 22 | |
| 23 | lib_LTLIBRARIES = libFLAC.la |
| 24 | if DEBUG |
Josh Coalson | 6904e6a | 2001-05-03 00:49:27 +0000 | [diff] [blame] | 25 | CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 26 | else |
Josh Coalson | 6904e6a | 2001-05-03 00:49:27 +0000 | [diff] [blame] | 27 | CFLAGS = @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 28 | endif |
| 29 | |
Josh Coalson | c8ef835 | 2001-05-25 00:06:33 +0000 | [diff] [blame] | 30 | if FLaC__NO_ASM |
| 31 | else |
Josh Coalson | e02e8ba | 2001-05-23 20:58:14 +0000 | [diff] [blame] | 32 | if FLaC__CPU_IA32 |
| 33 | if FLaC__HAS_NASM |
Josh Coalson | c8ef835 | 2001-05-25 00:06:33 +0000 | [diff] [blame] | 34 | SUBDIRS = i386 . |
| 35 | libFLAC_la_LIBADD = i386/libFLAC-asm.la |
| 36 | endif |
| 37 | endif |
| 38 | endif |
| 39 | |
Josh Coalson | 9f429ba | 2001-01-19 22:39:39 +0000 | [diff] [blame] | 40 | libFLAC_la_SOURCES = \ |
| 41 | bitbuffer.c \ |
Josh Coalson | 673976d | 2001-03-30 00:45:52 +0000 | [diff] [blame] | 42 | bitmath.c \ |
Josh Coalson | e02e8ba | 2001-05-23 20:58:14 +0000 | [diff] [blame] | 43 | cpu.c \ |
Josh Coalson | c8ef835 | 2001-05-25 00:06:33 +0000 | [diff] [blame] | 44 | crc.c \ |
Josh Coalson | e02e8ba | 2001-05-23 20:58:14 +0000 | [diff] [blame] | 45 | file_decoder.c \ |
| 46 | fixed.c \ |
| 47 | format.c \ |
| 48 | lpc.c \ |
| 49 | md5.c \ |
Josh Coalson | c8ef835 | 2001-05-25 00:06:33 +0000 | [diff] [blame] | 50 | memory.c \ |
Josh Coalson | 5906c2d | 2001-04-13 18:57:20 +0000 | [diff] [blame] | 51 | seek_table.c \ |
Josh Coalson | 0a15c14 | 2001-06-13 17:59:57 +0000 | [diff] [blame^] | 52 | stream_decoder.c \ |
| 53 | stream_encoder.c \ |
| 54 | stream_encoder_framing.c |