mirror of https://github.com/xemu-project/xemu.git
19 lines
413 B
Makefile
19 lines
413 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# Alpha specific tweaks
|
|
|
|
ALPHA_SRC=$(SRC_PATH)/tests/tcg/alpha
|
|
VPATH+=$(ALPHA_SRC)
|
|
|
|
ALPHA_TESTS=hello-alpha test-cond test-cmov test-ovf test-cvttq
|
|
TESTS+=$(ALPHA_TESTS)
|
|
|
|
test-cmov: EXTRA_CFLAGS=-DTEST_CMOV
|
|
test-cmov: test-cond.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
# Force generation of byte read/write
|
|
test-plugin-mem-access: CFLAGS+=-mbwx
|
|
|
|
run-test-cmov: test-cmov
|