From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36629) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAFUW-0007NS-Tp for qemu-devel@nongnu.org; Tue, 07 Jun 2016 07:48:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAFUP-0003dr-V9 for qemu-devel@nongnu.org; Tue, 07 Jun 2016 07:48:16 -0400 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:33022) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAFUP-0003da-OQ for qemu-devel@nongnu.org; Tue, 07 Jun 2016 07:48:09 -0400 Received: by mail-wm0-x242.google.com with SMTP id r5so5328855wmr.0 for ; Tue, 07 Jun 2016 04:48:09 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 7 Jun 2016 13:48:02 +0200 Message-Id: <1465300083-72463-3-git-send-email-pbonzini@redhat.com> In-Reply-To: <1465300083-72463-1-git-send-email-pbonzini@redhat.com> References: <1465300083-72463-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 2/3] Makefile: add dependency on scripts/make_device_config.sh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org Make sure that config-devices.mak is rebuilt whenever there is a change in the scripts that generates it. Signed-off-by: Paolo Bonzini --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e0e1f8..72e0d74 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ endif -include $(SUBDIR_DEVICES_MAK_DEP) -%/config-devices.mak: default-configs/%.mak +%/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh $(call quiet-command, \ $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp, " GEN $@.tmp") $(call quiet-command, if test -f $@; then \ -- 1.8.3.1