From: Paolo Bonzini Date: Thu, 29 Sep 2022 11:41:55 +0000 (+0100) Subject: vof: add distclean target X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=ff0102f67ff859daebbbac7c5c7752fba97e3bfd;p=people%2Fpauldu%2Fqemu.git vof: add distclean target Signed-off-by: Paolo Bonzini [AJB: add clean dep to distclean] Signed-off-by: Alex Bennée Message-Id: <20220929114231.583801-16-alex.bennee@linaro.org> --- diff --git a/pc-bios/vof/Makefile b/pc-bios/vof/Makefile index 8809c82768..4e59009e67 100644 --- a/pc-bios/vof/Makefile +++ b/pc-bios/vof/Makefile @@ -19,4 +19,6 @@ vof.elf: entry.o main.o ci.o bootmem.o libc.o clean: rm -f *.o vof.bin vof.elf *~ -.PHONY: all clean +distclean: clean + +.PHONY: all clean distclean