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