Files
flac/src/libFLAC/Makefile.am

67 lines
979 B
Makefile
Raw Normal View History

2001-01-19 22:39:39 +00:00
#
# GNU makefile
#
2001-05-23 20:58:14 +00:00
SUFFIXES = .nasm
.nasm.o:
$(NASM) -f elf -d ELF -i i386/ $< -o $@
2001-01-19 22:39:39 +00:00
lib_LTLIBRARIES = libFLAC.la
if DEBUG
CFLAGS += @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS -DFLAC__OVERFLOW_DETECT
2001-01-19 22:39:39 +00:00
else
CFLAGS = @CFLAGS@ -DFLAC__PRECOMPUTE_PARTITION_SUMS
2001-01-19 22:39:39 +00:00
endif
2001-05-23 20:58:14 +00:00
if FLaC__CPU_IA32
if FLaC__HAS_NASM
libFLAC_la_SOURCES = \
bitbuffer.c \
bitmath.c \
crc.c \
cpu.c \
encoder.c \
encoder_framing.c \
file_decoder.c \
fixed.c \
format.c \
lpc.c \
md5.c \
seek_table.c \
stream_decoder.c \
i386/cpu_asm.nasm \
i386/fixed_asm.nasm \
i386/lpc_asm.nasm
else
libFLAC_la_SOURCES = \
bitbuffer.c \
bitmath.c \
crc.c \
cpu.c \
encoder.c \
encoder_framing.c \
file_decoder.c \
fixed.c \
format.c \
lpc.c \
md5.c \
seek_table.c \
stream_decoder.c
endif
else
2001-01-19 22:39:39 +00:00
libFLAC_la_SOURCES = \
bitbuffer.c \
2001-03-30 00:45:52 +00:00
bitmath.c \
2001-01-19 22:39:39 +00:00
crc.c \
2001-05-23 20:58:14 +00:00
cpu.c \
2001-01-19 22:39:39 +00:00
encoder.c \
encoder_framing.c \
file_decoder.c \
fixed.c \
format.c \
lpc.c \
md5.c \
2001-04-13 18:57:20 +00:00
seek_table.c \
2001-01-19 22:39:39 +00:00
stream_decoder.c
2001-05-23 20:58:14 +00:00
endif