diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-02-06 19:16:44 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-12 21:30:13 +0200 |
commit | baaab6069a261354a1c9470f3185686ad85166c6 (patch) | |
tree | 93274ff583301040ac992291eceff91b6c1613c1 /libavutil | |
parent | 18e8fef7c9292041e3266487d9bc6b59e5eaa798 (diff) | |
download | ffmpeg-baaab6069a261354a1c9470f3185686ad85166c6.tar.gz |
build: Move all arch OBJS declarations into arch subdirectory Makefiles.
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 3 | ||||
-rw-r--r-- | libavutil/ppc/Makefile | 1 | ||||
-rw-r--r-- | libavutil/x86/Makefile | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index a73fb79d0f..820abb1429 100644 --- a/libavutil/Makefile +++ b/libavutil/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 diff --git a/libavutil/ppc/Makefile b/libavutil/ppc/Makefile new file mode 100644 index 0000000000..5b18b08957 --- /dev/null +++ b/libavutil/ppc/Makefile @@ -0,0 +1 @@ +OBJS += ppc/cpu.o \ diff --git a/libavutil/x86/Makefile b/libavutil/x86/Makefile new file mode 100644 index 0000000000..de8a341442 --- /dev/null +++ b/libavutil/x86/Makefile @@ -0,0 +1 @@ +OBJS += x86/cpu.o \ |