2000-12-10 04:09:52 +00:00
|
|
|
#
|
|
|
|
|
# GNU makefile
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
LIB_NAME = libFLAC
|
2001-05-03 00:49:27 +00:00
|
|
|
DEFINES = -DFLAC__PRECOMPUTE_PARTITION_SUMS
|
2001-03-21 22:35:25 +00:00
|
|
|
INCLUDES = -I./include -I../../include
|
2001-04-24 22:54:07 +00:00
|
|
|
DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT
|
2000-12-10 04:09:52 +00:00
|
|
|
|
|
|
|
|
OBJS = \
|
|
|
|
|
bitbuffer.o \
|
2001-03-30 00:45:52 +00:00
|
|
|
bitmath.o \
|
2000-12-10 04:09:52 +00:00
|
|
|
crc.o \
|
|
|
|
|
encoder.o \
|
|
|
|
|
encoder_framing.o \
|
|
|
|
|
file_decoder.o \
|
|
|
|
|
fixed.o \
|
|
|
|
|
format.o \
|
|
|
|
|
lpc.o \
|
2001-01-12 23:58:30 +00:00
|
|
|
md5.o \
|
2001-04-13 18:57:20 +00:00
|
|
|
seek_table.o \
|
2001-05-03 03:41:52 +00:00
|
|
|
stream_decoder.o
|
2000-12-10 04:09:52 +00:00
|
|
|
|
|
|
|
|
include ../../build/lib.mk
|
|
|
|
|
|
|
|
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|