diff options
author | Michael Walle | 2012-03-31 19:53:51 +0200 |
---|---|---|
committer | Michael Walle | 2012-03-31 19:56:03 +0200 |
commit | 927b241d66c17501013ccea9f1b56a3d9c7ebb79 (patch) | |
tree | 6d141c532d8dcdb02de05073c97a979cdae3fdb4 /configure | |
parent | Merge branch 'arm-devs.for-upstream' of git://git.linaro.org/people/pmaydell/... (diff) | |
download | qemu-927b241d66c17501013ccea9f1b56a3d9c7ebb79.tar.gz qemu-927b241d66c17501013ccea9f1b56a3d9c7ebb79.tar.xz qemu-927b241d66c17501013ccea9f1b56a3d9c7ebb79.zip |
tests: fix out-of-tree building for lm32 target
Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3876,7 +3876,8 @@ echo "QEMU_INCLUDES+=$includes" >> $config_target_mak done # for target in $targets # build tree in object directory in case the source is not in the current directory -DIRS="tests tests/tcg tests/tcg/cris slirp audio block net pc-bios/optionrom" +DIRS="tests tests/tcg tests/tcg/cris tests/tcg/lm32" +DIRS="$DIRS slirp audio block net pc-bios/optionrom" DIRS="$DIRS pc-bios/spapr-rtas" DIRS="$DIRS roms/seabios roms/vgabios" DIRS="$DIRS fsdev ui usb" @@ -3884,6 +3885,7 @@ DIRS="$DIRS qapi qapi-generated" DIRS="$DIRS qga trace qom" FILES="Makefile tests/tcg/Makefile qdict-test-data.txt" FILES="$FILES tests/tcg/cris/Makefile tests/tcg/cris/.gdbinit" +FILES="$FILES tests/tcg/lm32/Makefile" FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" FILES="$FILES pc-bios/spapr-rtas/Makefile" FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" |