summaryrefslogtreecommitdiff
path: root/src/libFLAC/Makefile.lite
blob: 7d5c8efb41f896cc5cb3518ea14b223464ca2ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#
# GNU makefile
#

LIB_NAME  = libFLAC
INCLUDES  = -I./include -I../../include
DEBUG_CFLAGS = -DFLAC_OVERFLOW_DETECT

OBJS = \
	bitbuffer.o \
	bitmath.o \
	crc.o \
	encoder.o \
	encoder_framing.o \
	file_decoder.o \
	fixed.o \
	format.o \
	lpc.o \
	md5.o \
	seek_table.o \
	stream_decoder.o

include ../../build/lib.mk

# DO NOT DELETE THIS LINE -- make depend depends on it.