Files
flac/src/libFLAC/Makefile.lite

32 lines
559 B
Makefile
Raw Normal View History

2000-12-10 04:09:52 +00:00
#
# GNU makefile
#
LIB_NAME = libFLAC
2001-05-23 20:58:14 +00:00
DEFINES = -DFLAC__CPU_IA32 -DFLAC__HAS_NASM -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__ALIGN_MALLOC_DATA
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 \
2001-05-23 20:58:14 +00:00
cpu.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-05-11 23:54:49 +00:00
memory.o \
2001-04-13 18:57:20 +00:00
seek_table.o \
2001-05-23 20:58:14 +00:00
stream_decoder.o \
i386/cpu_asm.o \
i386/fixed_asm.o \
i386/lpc_asm.o
2000-12-10 04:09:52 +00:00
include ../../build/lib.mk
# DO NOT DELETE THIS LINE -- make depend depends on it.