Files
flac/src/libFLAC/Makefile.am

37 lines
541 B
Makefile
Raw Normal View History

2001-01-19 22:39:39 +00:00
#
# GNU makefile
#
lib_LTLIBRARIES = libFLAC.la
if DEBUG
CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT
2001-01-19 22:39:39 +00:00
else
CFLAGS = @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS
2001-01-19 22:39:39 +00:00
endif
if FLaC__NO_ASM
else
2001-05-23 20:58:14 +00:00
if FLaC__CPU_IA32
if FLaC__HAS_NASM
SUBDIRS = i386 .
libFLAC_la_LIBADD = i386/libFLAC-asm.la
2001-05-23 20:58:14 +00:00
endif
endif
endif
2001-01-19 22:39:39 +00:00
libFLAC_la_SOURCES = \
bitbuffer.c \
2001-03-30 00:45:52 +00:00
bitmath.c \
2001-05-23 20:58:14 +00:00
cpu.c \
crc.c \
2001-01-19 22:39:39 +00:00
encoder.c \
encoder_framing.c \
file_decoder.c \
fixed.c \
format.c \
lpc.c \
md5.c \
memory.c \
2001-04-13 18:57:20 +00:00
seek_table.c \
2001-01-19 22:39:39 +00:00
stream_decoder.c