diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2018-04-06 11:08:37 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2018-06-20 20:22:34 +0100 |
commit | c722a9e49265a637ec2bfb3d22a3e9777274ca4d (patch) | |
tree | a32e039f9ae3ff13654ac911389c07f0081239c1 /Makefile.target | |
parent | 7e97017e7db3c0ce552cf1a58df8bb97bde29c98 (diff) | |
download | qemu-c722a9e49265a637ec2bfb3d22a3e9777274ca4d.zip qemu-c722a9e49265a637ec2bfb3d22a3e9777274ca4d.tar.gz qemu-c722a9e49265a637ec2bfb3d22a3e9777274ca4d.tar.bz2 |
Makefile.target: add (clean-/build-)guest-tests targets
Now all the build infrastructure is in place we can build tests for
each guest that we support. That support mainly depends on having
cross compilers installed or docker setup. To keep all the logic for
that together we put the rules in tests/tcg/Makefile.include and
include it from the main Makefile.target.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.target b/Makefile.target index dad2cf8..a9d8928 100644 --- a/Makefile.target +++ b/Makefile.target @@ -36,6 +36,11 @@ endif PROGS=$(QEMU_PROG) $(QEMU_PROGW) STPFILES= +# Makefile Tests +ifdef CONFIG_USER_ONLY +include $(SRC_PATH)/tests/tcg/Makefile.include +endif + config-target.h: config-target.h-timestamp config-target.h-timestamp: config-target.mak |