build: Move all arch OBJS declarations into arch subdirectory Makefiles.

This commit is contained in:
Diego Biurrun 2012-02-06 19:16:44 +01:00
parent 18e8fef7c9
commit baaab6069a
8 changed files with 18 additions and 19 deletions

View File

@ -72,9 +72,6 @@ OBJS = adler32.o \
tree.o \
utils.o \
OBJS-$(ARCH_PPC) += ppc/cpu.o
OBJS-$(ARCH_X86) += x86/cpu.o
TESTPROGS = adler32 aes avstring base64 cpu crc des eval fifo lfg lls \
md5 opt parseutils sha tree

1
libavutil/ppc/Makefile Normal file
View File

@ -0,0 +1 @@
OBJS += ppc/cpu.o \

1
libavutil/x86/Makefile Normal file
View File

@ -0,0 +1 @@
OBJS += x86/cpu.o \

View File

@ -12,20 +12,4 @@ OBJS = input.o \
utils.o \
yuv2rgb.o \
OBJS-$(ARCH_BFIN) += bfin/internal_bfin.o \
bfin/swscale_bfin.o \
bfin/yuv2rgb_bfin.o
ALTIVEC-OBJS += ppc/swscale_altivec.o \
ppc/yuv2rgb_altivec.o \
ppc/yuv2yuv_altivec.o
MMX-OBJS += x86/rgb2rgb.o \
x86/swscale_mmx.o \
x86/yuv2rgb_mmx.o
VIS-OBJS += sparc/yuv2rgb_vis.o
YASM-OBJS += x86/input.o \
x86/output.o \
x86/scale.o
OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
TESTPROGS = colorspace swscale

3
libswscale/bfin/Makefile Normal file
View File

@ -0,0 +1,3 @@
OBJS += bfin/internal_bfin.o \
bfin/swscale_bfin.o \
bfin/yuv2rgb_bfin.o \

3
libswscale/ppc/Makefile Normal file
View File

@ -0,0 +1,3 @@
ALTIVEC-OBJS += ppc/swscale_altivec.o \
ppc/yuv2rgb_altivec.o \
ppc/yuv2yuv_altivec.o \

View File

@ -0,0 +1 @@
VIS-OBJS += sparc/yuv2rgb_vis.o \

9
libswscale/x86/Makefile Normal file
View File

@ -0,0 +1,9 @@
OBJS-$(CONFIG_XMM_CLOBBER_TEST) += x86/w64xmmtest.o
MMX-OBJS += x86/rgb2rgb.o \
x86/swscale_mmx.o \
x86/yuv2rgb_mmx.o \
YASM-OBJS += x86/input.o \
x86/output.o \
x86/scale.o \