mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-21 04:53:46 -04:00
selftests/powerpc: Fix remaining fallout from recent changes
In benchmarks we need to use $(TEST_GEN_PROGS) after we include lib.mk,
because lib.mk does the substitution to add $(OUTPUT).
In math the vmx and fpu names were typoed so they no longer matched
correctly, put back the 'v' and 'f'.
In tm we need to substitute $(OUTPUT) into SIGNAL_CONTEXT_CHK_TESTS so
that the rule matches.
In pmu there is an extraneous ':' on the end of $$BUILD_TARGET for the
clean and install rules, which breaks the logic in the child Makefiles.
Fixes: a8ba798bc8 ("selftests: enable O and KBUILD_OUTPUT")
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
committed by
Shuah Khan
parent
2e8ec87dad
commit
68bd42d97c
@@ -5,13 +5,13 @@ include ../../lib.mk
|
||||
$(TEST_GEN_PROGS): ../harness.c
|
||||
$(TEST_GEN_PROGS): CFLAGS += -O2 -g -pthread -m64 -maltivec
|
||||
|
||||
$(OUTPUT)/pu_syscall: fpu_asm.S
|
||||
$(OUTPUT)/pu_preempt: fpu_asm.S
|
||||
$(OUTPUT)/pu_signal: fpu_asm.S
|
||||
$(OUTPUT)/fpu_syscall: fpu_asm.S
|
||||
$(OUTPUT)/fpu_preempt: fpu_asm.S
|
||||
$(OUTPUT)/fpu_signal: fpu_asm.S
|
||||
|
||||
$(OUTPUT)/mx_syscall: vmx_asm.S
|
||||
$(OUTPUT)/mx_preempt: vmx_asm.S
|
||||
$(OUTPUT)/mx_signal: vmx_asm.S
|
||||
$(OUTPUT)/vmx_syscall: vmx_asm.S
|
||||
$(OUTPUT)/vmx_preempt: vmx_asm.S
|
||||
$(OUTPUT)/vmx_signal: vmx_asm.S
|
||||
|
||||
vsx_preempt: CFLAGS += -mvsx
|
||||
vsx_preempt: vsx_asm.S
|
||||
$(OUTPUT)/vsx_preempt: CFLAGS += -mvsx
|
||||
$(OUTPUT)/vsx_preempt: vsx_asm.S
|
||||
|
||||
Reference in New Issue
Block a user