Browse Source

build: Drop arch-specific checkasm Makefiles

They only contain one line and will never contain more.
tags/n3.3
Diego Biurrun 9 years ago
parent
commit
2816f8a8bb
4 changed files with 3 additions and 4 deletions
  1. +3
    -1
      tests/checkasm/Makefile
  2. +0
    -1
      tests/checkasm/aarch64/Makefile
  3. +0
    -1
      tests/checkasm/arm/Makefile
  4. +0
    -1
      tests/checkasm/x86/Makefile

+ 3
- 1
tests/checkasm/Makefile View File

@@ -19,7 +19,9 @@ AVCODECOBJS-$(CONFIG_VP9_DECODER) += vp9dsp.o
CHECKASMOBJS-$(CONFIG_AVCODEC) += $(AVCODECOBJS-yes)


-include $(SRC_PATH)/tests/checkasm/$(ARCH)/Makefile
CHECKASMOBJS-$(ARCH_AARCH64) += aarch64/checkasm.o
CHECKASMOBJS-$(HAVE_ARMV5TE_EXTERNAL) += arm/checkasm.o
CHECKASMOBJS-$(HAVE_YASM) += x86/checkasm.o

CHECKASMOBJS += $(CHECKASMOBJS-yes) checkasm.o
CHECKASMOBJS := $(sort $(CHECKASMOBJS:%=tests/checkasm/%))


+ 0
- 1
tests/checkasm/aarch64/Makefile View File

@@ -1 +0,0 @@
CHECKASMOBJS += aarch64/checkasm.o

+ 0
- 1
tests/checkasm/arm/Makefile View File

@@ -1 +0,0 @@
CHECKASMOBJS-$(HAVE_ARMV5TE_EXTERNAL) += arm/checkasm.o

+ 0
- 1
tests/checkasm/x86/Makefile View File

@@ -1 +0,0 @@
CHECKASMOBJS-$(HAVE_YASM) += x86/checkasm.o

Loading…
Cancel
Save