view mp3lib/Makefile @ 21932:c11cbff65f18

r21727: Must refer to option name instead of internal variable r21758: Subtitle formats are listed in subreader.h, not libmpdemux/demuxer.h. r21848: clarify a few things about the interaction between *cmp and mbd options r21865: Audio track switching works with DVDs as well. r21882: sync to x264 r607 (update description of threads)
author kraymer
date Wed, 17 Jan 2007 14:04:30 +0000
parents ef59ac68c9b6
children 8bcff5c7e387
line wrap: on
line source


include ../config.mak

LIBNAME = libMP3.a

ifeq ($(TARGET_ARCH_SGI_MIPS),yes)
OPTFLAGS := $(OPTFLAGS:-O4=-O0)
endif

SRCS = sr1.c
ifeq ($(TARGET_ARCH_X86_32),yes)
SRCS += decode_i586.c
SRCS-$(TARGET_MMX)     += decode_MMX.c dct64_MMX.c tabinit_MMX.c
SRCS-$(TARGET_3DNOW)   += dct36_3dnow.c dct64_3dnow.c
SRCS-$(TARGET_3DNOWEX) += dct36_k7.c dct64_k7.c
SRCS-$(TARGET_SSE)     += dct64_sse.c
endif
ifeq ($(TARGET_ALTIVEC),yes)
SRCS += dct64_altivec.c
ifeq ($(TARGET_OS),Darwin)
CFLAGS += -faltivec
else
CFLAGS += -maltivec -mabi=altivec
endif
endif

include ../mpcommon.mak

decode_i586.o: decode_i586.c
	$(CC) -c $(CFLAGS) -fomit-frame-pointer -o $@ $<

%: %.c	$(LIBNAME) ../mp_msg-mencoder.o ../cpudetect.o
	$(CC) $(CFLAGS) -o $@ ../libvo/aclib.c $^ -lm

distclean::
	rm -f test test2