qemu-patch-raspberry4/tests/alpha/Makefile
aurel32 ecbb5ea104 target-alpha: overflow condition for sublv and subqv
The conditions to detect overflow in sub operations was wrong.

This patch is necessary to boot Tru64.

Signed-off-by: Tristan Gingold <gingold@adacore.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7073 c046a42c-6fe2-441c-8c8c-71466251a162
2009-04-10 21:27:15 +00:00

36 lines
552 B
Makefile

CROSS=alpha-linux-gnu-
CC=$(CROSS)gcc
AS=$(CROSS)as
SIM=../../alpha-linux-user/qemu-alpha
CFLAGS=-O
LINK=$(CC) -o $@ crt.o $< -nostdlib
TESTS=test-cond test-cmov
all: hello-alpha $(TESTS)
hello-alpha: hello-alpha.o crt.o
$(LINK)
test-cond: test-cond.o crt.o
$(LINK)
test-cmov.o: test-cond.c
$(CC) -c $(CFLAGS) -DTEST_CMOV -o $@ $<
test-cmov: test-cmov.o crt.o
$(LINK)
test-ovf: test-ovf.o crt.o
$(LINK)
check: $(TESTS)
for f in $(TESTS); do $(SIM) $$f || exit 1; done
clean:
$(RM) *.o *~ hello-alpha $(TESTS)
.PHONY: clean all check