From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: Re: [PATCH] tools: ovmf debug build only if tools debug is enabled Date: Thu, 31 Oct 2013 14:34:11 +0000 Message-ID: <52726A63.3060709@citrix.com> References: <1383228171-5132-1-git-send-email-fabio.fantoni@m2r.biz> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1383228171-5132-1-git-send-email-fabio.fantoni@m2r.biz> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Fabio Fantoni Cc: Ian.Jackson@eu.citrix.com, xen-devel@lists.xensource.com, wei.liu2@citrix.com, Ian.Campbell@citrix.com List-Id: xen-devel@lists.xenproject.org On 31/10/13 14:02, Fabio Fantoni wrote: > Signed-off-by: Fabio Fantoni > --- > tools/firmware/ovmf-makefile | 13 +++++++++++-- > 1 file changed, 11 insertions(+), 2 deletions(-) > > diff --git a/tools/firmware/ovmf-makefile b/tools/firmware/ovmf-makefile > index 073ed44..efb4fb1 100644 > --- a/tools/firmware/ovmf-makefile > +++ b/tools/firmware/ovmf-makefile > @@ -1,3 +1,6 @@ > +XEN_ROOT = $(CURDIR)/../../.. > +include $(XEN_ROOT)/tools/Rules.mk > + > # OVMF building system is not ready yet to run in parallel. > # Force it to be serial in order to exploit parallelism for neighbors. > > @@ -9,8 +12,14 @@ all: ovmf.bin > > .PHONY: ovmf.bin I know this is not your bad code, but this rule creates a file called ovmf.bin, so is very explicitly not a .PHONY rule > ovmf.bin: > - OvmfPkg/build.sh -a X64 > - cp Build/OvmfX64/DEBUG_GCC*/FV/OVMF.fd ovmf.bin > + if [ "$(debug)" == y ]; then \ > + OvmfPkg/build.sh -a X64; \ > + cp Build/OvmfX64/DEBUG_GCC*/FV/OVMF.fd ovmf.bin; \ > + else \ > + OvmfPkg/build.sh -a X64 -b RELEASE; \ > + cp Build/OvmfX64/RELEASE_GCC*/FV/OVMF.fd ovmf.bin; \ > + fi > + This is rather ugly, and will add yet more spew into the logs (which is in need of some pruning anyway). In this case the entire if statement will be printed, including both branches, before being executed. The more "make" way of doing it would be something like: ovmf.bin: ifeq ($(debug),y) OvmfPkg/build.sh -a X64 cp Build/OvmfX64/DEBUG_GCC*/FV/OVMF.fd $@ else OvmfPkg/build.sh -a X64 -b RELEASE cp Build/OvmfX64/RELEASE_GCC*/FV/OVMF.fd $@ endif ~Andrew