mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
configure: move SLOF submodule handling to pc-bios/s390-ccw
Move the handling of the roms/SLOF submodule out of the main Makefile, since we are going to remove submodules from the build process of QEMU. Acked-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2019cabfee
commit
b11f9bd96f
3 changed files with 15 additions and 5 deletions
|
@ -6,6 +6,8 @@ include config-host.mak
|
|||
CFLAGS = -O2 -g
|
||||
MAKEFLAGS += -rR
|
||||
|
||||
GIT_SUBMODULES = roms/SLOF
|
||||
|
||||
NULL :=
|
||||
SPACE := $(NULL) #
|
||||
TARGET_PREFIX := $(patsubst %/,%:$(SPACE),$(TARGET_DIR))
|
||||
|
@ -80,3 +82,12 @@ clean:
|
|||
|
||||
distclean:
|
||||
rm -f config-cc.mak
|
||||
|
||||
.PHONY: git-submodule-update
|
||||
$(SRC_PATH)/../../.git-submodule-status: git-submodule-update config-host.mak
|
||||
Makefile: $(SRC_PATH)/../../.git-submodule-status
|
||||
|
||||
git-submodule-update:
|
||||
ifneq ($(GIT_SUBMODULES_ACTION),ignore)
|
||||
$(quiet-@)GIT=git "$(SRC_PATH)/../../scripts/git-submodule.sh" $(GIT_SUBMODULES_ACTION) $(GIT_SUBMODULES)
|
||||
endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue