Blame view

tests/alpha/Makefile 515 Bytes
aurel32 authored
1
2
3
4
5
6
7
CROSS=alpha-linux-gnu-
CC=$(CROSS)gcc
AS=$(CROSS)as

SIM=../../alpha-linux-user/qemu-alpha

CFLAGS=-O
aurel32 authored
8
LINK=$(CC) -o $@ crt.o $< -nostdlib
aurel32 authored
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

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)
aurel32 authored
26
27
28
check: $(TESTS)
	for f in $(TESTS); do $(SIM) $$f || exit 1; done
aurel32 authored
29
30
31
clean:
	$(RM) *.o *~ hello-alpha $(TESTS)
aurel32 authored
32
.PHONY: clean all check