comparison mp3lib/Makefile @ 21308:22a33d822400

Remove redundant ifeq ($(TARGET_ARCH_POWERPC),yes), AltiVec exists only on PPC.
author diego
date Mon, 27 Nov 2006 13:38:13 +0000
parents bf9e5ad91bbb
children ef59ac68c9b6
comparison
equal deleted inserted replaced
21307:5fdf546b4e57 21308:22a33d822400
21 endif 21 endif
22 ifeq ($(TARGET_SSE),yes) 22 ifeq ($(TARGET_SSE),yes)
23 SRCS += dct64_sse.c 23 SRCS += dct64_sse.c
24 endif 24 endif
25 endif 25 endif
26 ifeq ($(TARGET_ARCH_POWERPC),yes)
27 ifeq ($(TARGET_ALTIVEC),yes) 26 ifeq ($(TARGET_ALTIVEC),yes)
28 SRCS += dct64_altivec.c 27 SRCS += dct64_altivec.c
29 ifeq ($(TARGET_OS),Darwin) 28 ifeq ($(TARGET_OS),Darwin)
30 CFLAGS += -faltivec 29 CFLAGS += -faltivec
31 else 30 else
32 CFLAGS += -maltivec -mabi=altivec 31 CFLAGS += -maltivec -mabi=altivec
33 endif
34 endif 32 endif
35 endif 33 endif
36 34
37 include ../mpcommon.mak 35 include ../mpcommon.mak
38 36