Skip to content
Snippets Groups Projects
Commit 55d7e8f6 authored by Aurelien Jarno's avatar Aurelien Jarno
Browse files

Call configure automatically when needed


Automatically rerun configure when it is needed.

Signed-off-by: default avatarStefan Weil <weil@mail.berlios.de>
Signed-off-by: default avatarAurelien Jarno <aurelien@aurel32.net>

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7110 c046a42c-6fe2-441c-8c8c-71466251a162
parent 6e9ea0c0
No related branches found
No related tags found
No related merge requests found
# Makefile for QEMU.
ifneq ($(wildcard config-host.mak),)
include config-host.mak
include $(SRC_PATH)/rules.mak
else
config-host.mak:
@echo "Please call configure before running make!"
@exit 1
endif
.PHONY: all clean cscope distclean dvi html info install install-doc \
recurse-all speed tar tarbin test
......@@ -36,6 +42,12 @@ endif
all: $(TOOLS) $(DOCS) recurse-all
config-host.mak: configure
ifneq ($(wildcard config-host.mak),)
@echo $@ is out-of-date, running configure
@fgrep "Configured with:" $@ | sed s/.*Configured.with:.// | sh
endif
SUBDIR_RULES=$(patsubst %,subdir-%, $(TARGET_DIRS))
subdir-%:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment