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

pull/5/head
Diego Biurrun 13 years ago
parent 18e8fef7c9
commit baaab6069a
  1. 3
      libavutil/Makefile
  2. 1
      libavutil/ppc/Makefile
  3. 1
      libavutil/x86/Makefile
  4. 16
      libswscale/Makefile
  5. 3
      libswscale/bfin/Makefile
  6. 3
      libswscale/ppc/Makefile
  7. 1
      libswscale/sparc/Makefile
  8. 9
      libswscale/x86/Makefile

@ -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

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

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

@ -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

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

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

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

@ -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 \
Loading…
Cancel
Save