QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
552 B
35 lines
552 B
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
|
|
|