mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
25 lines
386 B
Makefile
25 lines
386 B
Makefile
#
|
|
# GNU makefile
|
|
#
|
|
|
|
lib_LTLIBRARIES = libFLAC.la
|
|
if DEBUG
|
|
CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT
|
|
else
|
|
CFLAGS = @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS
|
|
endif
|
|
|
|
libFLAC_la_SOURCES = \
|
|
bitbuffer.c \
|
|
bitmath.c \
|
|
crc.c \
|
|
encoder.c \
|
|
encoder_framing.c \
|
|
file_decoder.c \
|
|
fixed.c \
|
|
format.c \
|
|
lpc.c \
|
|
md5.c \
|
|
seek_table.c \
|
|
stream_decoder.c
|