view mp3lib/Makefile @ 22275:e104fa52d218

With \t(\b) text becomes bold at the middle of time interval, not at the end of it like before. The same for \t(\i).
author eugeni
date Tue, 20 Feb 2007 17:20:21 +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