make PRECOMPUTE_PARTITION_SUMS the default
[platform/upstream/flac.git] / src / libFLAC / Makefile.lite
1 #
2 # GNU makefile
3 #
4
5 LIB_NAME  = libFLAC
6 DEFINES = -DFLAC__PRECOMPUTE_PARTITION_SUMS
7 INCLUDES  = -I./include -I../../include
8 DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT
9
10 OBJS = \
11         bitbuffer.o \
12         bitmath.o \
13         crc.o \
14         encoder.o \
15         encoder_framing.o \
16         file_decoder.o \
17         fixed.o \
18         format.o \
19         lpc.o \
20         md5.o \
21         seek_table.o \
22         stream_decoder.o
23
24 include ../../build/lib.mk
25
26 # DO NOT DELETE THIS LINE -- make depend depends on it.