aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/powerpc/math/Makefile
blob: 418bef192eab0e22f44ceb2486760e2826715c34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TEST_PROGS := fpu_syscall vmx_syscall

all: $(TEST_PROGS)

$(TEST_PROGS): ../harness.c
$(TEST_PROGS): CFLAGS += -O2 -g -pthread -m64 -maltivec

fpu_syscall: fpu_asm.S
vmx_syscall: vmx_asm.S

include ../../lib.mk

clean:
	rm -f $(TEST_PROGS) *.o