view mp3lib/Makefile @ 23597:8611e46ef592

r23504: -lavdopts threads is only implemented for mpeg[12] r23528: x264 no longer defaults to qp=26. r23530: Teletext support for tv:// (v4l and v4l2 only) r23548: give an example of -menu-chroot usage r23549: refine the example of -menu-chroot yet more r23561: add missing IDCT algothim, as defined in libavcodec/avcodec.h r23580: misc small fixes r23588: The audio balance feature implemented with af_pan. r23593: Revert r23530. r23609: Document the effect of -really-quiet on gmplayer.
author voroshil
date Sun, 24 Jun 2007 03:28:46 +0000
parents d198ab45f7c9
children f19f12214991
line wrap: on
line source

include ../config.mak

LIBNAME_COMMON = libmp3.a

SRCS_COMMON = sr1.c
SRCS_COMMON-$(TARGET_MMX)     += decode_MMX.c
SRCS_COMMON-$(TARGET_SSE)     += dct64_sse.c
ifeq ($(ARCH_X86_32),yes)
SRCS_COMMON                   += decode_i586.c
SRCS_COMMON-$(TARGET_MMX)     += dct64_MMX.c
SRCS_COMMON-$(TARGET_3DNOW)   += dct36_3dnow.c dct64_3dnow.c
SRCS_COMMON-$(TARGET_3DNOWEX) += dct36_k7.c dct64_k7.c
endif
SRCS_COMMON-$(TARGET_ALTIVEC) += dct64_altivec.c

include ../mpcommon.mak

decode_i586.o: CFLAGS += -fomit-frame-pointer

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