mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
build: Move all arch OBJS declarations into arch subdirectory Makefiles.
This commit is contained in:
parent
18e8fef7c9
commit
baaab6069a
@ -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
1
libavutil/ppc/Makefile
Normal file
@ -0,0 +1 @@
|
||||
OBJS += ppc/cpu.o \
|
1
libavutil/x86/Makefile
Normal file
1
libavutil/x86/Makefile
Normal file
@ -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
|
||||
|
3
libswscale/bfin/Makefile
Normal file
3
libswscale/bfin/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
OBJS += bfin/internal_bfin.o \
|
||||
bfin/swscale_bfin.o \
|
||||
bfin/yuv2rgb_bfin.o \
|
3
libswscale/ppc/Makefile
Normal file
3
libswscale/ppc/Makefile
Normal file
@ -0,0 +1,3 @@
|
||||
ALTIVEC-OBJS += ppc/swscale_altivec.o \
|
||||
ppc/yuv2rgb_altivec.o \
|
||||
ppc/yuv2yuv_altivec.o \
|
1
libswscale/sparc/Makefile
Normal file
1
libswscale/sparc/Makefile
Normal file
@ -0,0 +1 @@
|
||||
VIS-OBJS += sparc/yuv2rgb_vis.o \
|
9
libswscale/x86/Makefile
Normal file
9
libswscale/x86/Makefile
Normal 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 \
|
Loading…
Reference in New Issue
Block a user