add asm routines
[platform/upstream/flac.git] / src / libFLAC / Makefile.lite
1 #
2 # GNU makefile
3 #
4
5 LIB_NAME  = libFLAC
6 DEFINES = -DFLAC__CPU_IA32 -DFLAC__HAS_NASM -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__ALIGN_MALLOC_DATA
7 INCLUDES  = -I./include -I../../include
8 DEBUG_CFLAGS = -DFLAC__OVERFLOW_DETECT
9
10 OBJS = \
11         bitbuffer.o \
12         bitmath.o \
13         cpu.o \
14         crc.o \
15         encoder.o \
16         encoder_framing.o \
17         file_decoder.o \
18         fixed.o \
19         format.o \
20         lpc.o \
21         md5.o \
22         memory.o \
23         seek_table.o \
24         stream_decoder.o \
25         i386/cpu_asm.o \
26         i386/fixed_asm.o \
27         i386/lpc_asm.o
28
29 include ../../build/lib.mk
30
31 # DO NOT DELETE THIS LINE -- make depend depends on it.