2001-01-19 22:39:39 +00:00
|
|
|
#
|
|
|
|
|
# GNU makefile
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libFLAC.la
|
|
|
|
|
if DEBUG
|
2001-05-03 00:49:27 +00:00
|
|
|
CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT
|
2001-01-19 22:39:39 +00:00
|
|
|
else
|
2001-05-03 00:49:27 +00:00
|
|
|
CFLAGS = @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS
|
2001-01-19 22:39:39 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
libFLAC_la_SOURCES = \
|
|
|
|
|
bitbuffer.c \
|
2001-03-30 00:45:52 +00:00
|
|
|
bitmath.c \
|
2001-01-19 22:39:39 +00:00
|
|
|
crc.c \
|
|
|
|
|
encoder.c \
|
|
|
|
|
encoder_framing.c \
|
|
|
|
|
file_decoder.c \
|
|
|
|
|
fixed.c \
|
|
|
|
|
format.c \
|
|
|
|
|
lpc.c \
|
|
|
|
|
md5.c \
|
2001-04-13 18:57:20 +00:00
|
|
|
seek_table.c \
|
2001-01-19 22:39:39 +00:00
|
|
|
stream_decoder.c
|