15 lines
459 B
Makefile
15 lines
459 B
Makefile
|
# -*- Mode: makefile -*-
|
||
|
#
|
||
|
# Multiarch system tests
|
||
|
#
|
||
|
# We just collect the tests together here and rely on the actual guest
|
||
|
# architecture to add to the test dependancies and deal with the
|
||
|
# complications of building.
|
||
|
#
|
||
|
|
||
|
MULTIARCH_SYSTEM_SRC=$(SRC_PATH)/tests/tcg/multiarch/system
|
||
|
VPATH+=$(MULTIARCH_SYSTEM_SRC)
|
||
|
|
||
|
MULTIARCH_TEST_SRCS=$(wildcard $(MULTIARCH_SYSTEM_SRC)/*.c)
|
||
|
MULTIARCH_TESTS = $(patsubst $(MULTIARCH_SYSTEM_SRC)/%.c, %, $(MULTIARCH_TEST_SRCS))
|