
The current build structure for migration tests is confusing. There is the tests/migration directory, which contains two different guest code implementations, one for the qtests (a-b-{bootblock|kernel}.S) and another for the guestperf script (stress.c). One uses a Makefile, while the other uses meson. The next patches will add a new qtests/migration/ directory to hold qtest code which will make the situation even more confusing. Move the guest code used by qtests into a new qtests/migration/ directory and rename the old one to tests/migration-stress. Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Fabiano Rosas <farosas@suse.de>
24 lines
573 B
Makefile
24 lines
573 B
Makefile
# To specify cross compiler prefix, use CROSS_PREFIX=
|
|
# $ make CROSS_PREFIX=x86_64-linux-gnu-
|
|
|
|
.PHONY: all clean
|
|
all: a-b-bootblock.h
|
|
|
|
a-b-bootblock.h: x86.bootsect x86.o
|
|
echo "$$__note" > header.tmp
|
|
xxd -i $< | sed -e 's/.*int.*//' >> header.tmp
|
|
nm x86.o | awk '{print "#define SYM_"$$3" 0x"$$1}' >> header.tmp
|
|
mv header.tmp $@
|
|
|
|
x86.bootsect: x86.boot
|
|
dd if=$< of=$@ bs=256 count=2 skip=124
|
|
|
|
x86.boot: x86.o
|
|
$(CROSS_PREFIX)objcopy -O binary $< $@
|
|
|
|
x86.o: a-b-bootblock.S
|
|
$(CROSS_PREFIX)gcc -I.. -m32 -march=i486 -c $< -o $@
|
|
|
|
clean:
|
|
@rm -rf *.boot *.o *.bootsect
|