blob: 13e99b1692fa993bf80919e6e2da2d60116b0f00 [file] [log] [blame]
Wei Huangd54927e2018-09-05 15:15:32 -04001#
2# Copyright (c) 2018 Red Hat, Inc. and/or its affiliates
3#
4# This work is licensed under the terms of the GNU GPL, version 2 or later.
5# See the COPYING file in the top-level directory.
6#
7
Thomas Huth5571dc82018-10-09 11:51:17 +02008TARGET_LIST = i386 aarch64 s390x
Wei Huangd54927e2018-09-05 15:15:32 -04009
10SRC_PATH = ../..
Wei Huangfe730772018-09-05 15:15:31 -040011
Juan Quintela36bd9e32018-09-13 15:23:13 +020012.PHONY: help $(TARGET_LIST)
13help:
14 @echo "Create migration guest includes. We generate a binary."
15 @echo "And then convert that binary to an include file that can be"
16 @echo "run in a guest."
17 @echo "Possible operations are:"
18 @echo
19 @echo " $(MAKE) clean Remove all intermediate files"
20 @echo " $(MAKE) target Generate for that target"
21 @echo " $(MAKE) CROSS_PREFIX=... target"
22 @echo " Cross-compile than target"
23 @echo " Possible targets are: $(TARGET_LIST)"
24
Wei Huangfe730772018-09-05 15:15:31 -040025override define __note
Wei Huangd54927e2018-09-05 15:15:32 -040026/* This file is automatically generated from the assembly file in
27 * tests/migration/$@. Edit that file and then run "make all"
28 * inside tests/migration to update, and then remember to send both
29 * the header and the assembler differences in your patch submission.
Wei Huangfe730772018-09-05 15:15:31 -040030 */
31endef
32export __note
33
Wei Huangd54927e2018-09-05 15:15:32 -040034$(TARGET_LIST):
Juan Quintela36bd9e32018-09-13 15:23:13 +020035 $(MAKE) CROSS_PREFIX=$(CROSS_PREFIX) -C $@
Wei Huangfe730772018-09-05 15:15:31 -040036
37clean:
Wei Huangd54927e2018-09-05 15:15:32 -040038 for target in $(TARGET_LIST); do \
39 $(MAKE) -C $$target clean; \
40 done