comparison libmpeg2/Makefile @ 21309:ef59ac68c9b6

FFmpeg-style dependency declaration
author diego
date Mon, 27 Nov 2006 13:42:36 +0000
parents 92b122592776
children 5dc92a83d58a
comparison
equal deleted inserted replaced
21308:22a33d822400 21309:ef59ac68c9b6
10 header.c \ 10 header.c \
11 idct.c \ 11 idct.c \
12 motion_comp.c \ 12 motion_comp.c \
13 slice.c \ 13 slice.c \
14 14
15 SRCS-$(TARGET_MMX) += idct_mmx.c motion_comp_mmx.c
16 SRCS-$(TARGET_ALTIVEC) += motion_comp_altivec.c idct_altivec.c
17 SRCS-$(TARGET_VIS) += motion_comp_vis.c
18 SRCS-$(TARGET_ARCH_ALPHA) += idct_alpha.c motion_comp_alpha.c
19
15 CFLAGS = -I../libvo -DMPG12PLAY 20 CFLAGS = -I../libvo -DMPG12PLAY
16 21
17 ifeq ($(TARGET_MMX),yes)
18 SRCS += idct_mmx.c motion_comp_mmx.c
19 endif
20
21 ifeq ($(TARGET_ALTIVEC),yes)
22 SRCS += motion_comp_altivec.c idct_altivec.c
23 endif
24
25 ifeq ($(TARGET_VIS),yes)
26 SRCS += motion_comp_vis.c
27 endif
28
29 ifeq ($(TARGET_ARCH_ALPHA),yes)
30 SRCS += idct_alpha.c motion_comp_alpha.c
31 endif
32
33 include ../mpcommon.mak 22 include ../mpcommon.mak