1# -*- Mode: makefile -*- 2# 3# MIPS - included from tests/tcg/Makefile.target 4# 5 6MIPS_SRC=$(SRC_PATH)/tests/tcg/mips 7 8# Set search path for all sources 9VPATH += $(MIPS_SRC) 10 11MIPS_TESTS=hello-mips 12 13TESTS += $(MIPS_TESTS) 14 15hello-mips: CFLAGS+=-ffreestanding 16hello-mips: LDFLAGS+=-nostdlib 17 18# For MIPS32 and 64 we have a bunch of extra tests in sub-directories 19# however they are intended for system tests. 20 21run-hello-mips: hello-mips 22 $(call skip-test, $<, "BROKEN") 23