master
target 18 lines 413 Bytes
Raw
1 # -*- Mode: makefile -*-
2 #
3 # Alpha specific tweaks
4
5 ALPHA_SRC=$(SRC_PATH)/tests/tcg/alpha
6 VPATH+=$(ALPHA_SRC)
7
8 ALPHA_TESTS=hello-alpha test-cond test-cmov test-ovf test-cvttq
9 TESTS+=$(ALPHA_TESTS)
10
11 test-cmov: EXTRA_CFLAGS=-DTEST_CMOV
12 test-cmov: test-cond.c
13 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
14
15 # Force generation of byte read/write
16 test-plugin-mem-access: CFLAGS+=-mbwx
17
18 run-test-cmov: test-cmov