qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 1/5] Makefile: clean: Clean exe files


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH 1/5] Makefile: clean: Clean exe files
Date: Sun, 23 Jul 2017 11:08:40 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

Hi Sameeh,

On 07/05/2017 04:54 AM, Sameeh Jubran wrote:
From: Sameeh Jubran <address@hidden>

Clean exe files such as qemu-ga.exe

Signed-off-by: Sameeh Jubran <address@hidden>
---
  Makefile | 1 +
  1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index 16a0430..22d29d6 100644
--- a/Makefile
+++ b/Makefile
@@ -487,6 +487,7 @@ clean:
        rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h 
gen-op-arm.h
        rm -f qemu-options.def
        rm -f *.msi
+       rm -f *${EXESUF}
        find . \( -name '*.so' -o -name '*.dll' -o -name '*.mo' -o -name 
'*.[oda]' \) -type f -exec rm {} +
        rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* 
*.pod *~ */*~

It seems to me your problem is here, this line should be:

- rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga TAGS cscope.* *.pod *~ */*~ + rm -f $(filter-out %.tlb,$(TOOLS)) $(HELPERS-y) qemu-ga${EXESUF} TAGS cscope.* *.pod *~ */*~

        rm -f fsdev/*.pod


Regards,

Phil.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]