2001-02-24 20:28:24 +00:00
|
|
|
|
2001-07-03 07:50:52 +00:00
|
|
|
include ../config.mak
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-10-24 14:02:19 +00:00
|
|
|
ifeq ($(TARGET_ARCH_SGI_MIPS),yes)
|
|
|
|
OPTFLAGS := $(OPTFLAGS:-O4=-O0)
|
|
|
|
endif
|
2006-07-12 17:58:07 +00:00
|
|
|
CFLAGS = -I.. $(OPTFLAGS)
|
2006-10-19 21:29:17 +00:00
|
|
|
|
|
|
|
SRCS = sr1.c
|
2006-11-01 18:19:02 +00:00
|
|
|
ifeq ($(TARGET_ARCH_X86_32),yes)
|
2002-01-19 18:22:22 +00:00
|
|
|
SRCS += decode_i586.c
|
2006-07-19 05:27:02 +00:00
|
|
|
ifeq ($(TARGET_MMX),yes)
|
2002-01-15 09:01:39 +00:00
|
|
|
SRCS += decode_MMX.c dct64_MMX.c tabinit_MMX.c
|
2006-07-19 05:27:02 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_3DNOW),yes)
|
2003-06-22 03:32:16 +00:00
|
|
|
SRCS += dct36_3dnow.c dct64_3dnow.c
|
2006-07-19 05:27:02 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_3DNOWEX),yes)
|
|
|
|
SRCS += dct36_k7.c dct64_k7.c
|
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_SSE),yes)
|
|
|
|
SRCS += dct64_sse.c
|
|
|
|
endif
|
2001-07-03 07:50:52 +00:00
|
|
|
endif
|
2003-01-18 19:28:53 +00:00
|
|
|
ifeq ($(TARGET_ARCH_POWERPC),yes)
|
|
|
|
ifeq ($(TARGET_ALTIVEC),yes)
|
|
|
|
SRCS += dct64_altivec.c
|
2003-01-27 21:47:25 +00:00
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
2003-01-18 19:28:53 +00:00
|
|
|
CFLAGS += -faltivec
|
2003-01-27 21:47:25 +00:00
|
|
|
else
|
|
|
|
CFLAGS += -maltivec -mabi=altivec
|
|
|
|
endif
|
2003-01-18 19:28:53 +00:00
|
|
|
endif
|
|
|
|
endif
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2006-10-19 21:29:17 +00:00
|
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
|
|
|
# .PHONY: all clean
|
|
|
|
|
2002-12-24 00:05:43 +00:00
|
|
|
all: libMP3.a
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
2002-12-24 00:05:43 +00:00
|
|
|
decode_i586.o: decode_i586.c
|
|
|
|
$(CC) -c $(CFLAGS) -fomit-frame-pointer -o $@ $<
|
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
.s.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
2001-06-04 19:33:28 +00:00
|
|
|
libMP3.a: $(OBJS)
|
2001-02-24 20:28:24 +00:00
|
|
|
$(AR) r libMP3.a $(OBJS)
|
2004-06-24 12:52:17 +00:00
|
|
|
$(RANLIB) libMP3.a
|
|
|
|
|
2001-05-13 19:18:52 +00:00
|
|
|
test1: libMP3.a test.c
|
2002-09-01 18:25:24 +00:00
|
|
|
$(CC) $(CFLAGS) test.c ../libvo/aclib.c -o test1 -I.. ./libMP3.a ../mp_msg-mencoder.o ../cpudetect.o -lm
|
2001-05-13 19:18:52 +00:00
|
|
|
|
|
|
|
test2: libMP3.a test2.c
|
2002-09-01 18:25:24 +00:00
|
|
|
$(CC) $(CFLAGS) test2.c ../libvo/aclib.c -o test2 -I.. ./libMP3.a ../mp_msg-mencoder.o ../cpudetect.o -lm
|
2001-05-13 18:58:23 +00:00
|
|
|
|
2001-02-24 20:28:24 +00:00
|
|
|
clean:
|
2003-10-22 21:08:46 +00:00
|
|
|
rm -f *~ *.o *.a test1 test2
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2006-01-27 00:06:42 +00:00
|
|
|
distclean: clean
|
|
|
|
rm -f .depend
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-03-02 21:47:18 +00:00
|
|
|
dep: depend
|
2001-02-24 20:28:24 +00:00
|
|
|
|
2001-06-04 19:33:28 +00:00
|
|
|
depend:
|
2001-05-24 21:09:13 +00:00
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
2001-03-02 21:47:18 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|