[PATCH 3/4] Makefile: remove any .carray.c during clean
Andrew Jones
ajones at ventanamicro.com
Mon Jul 1 08:31:07 PDT 2024
On Mon, Jul 01, 2024 at 03:11:00PM GMT, Ben Dooks wrote:
> Now we've renamed the carray output files to .carray.c
> we can now use find to remove them.
>
> Signed-off-by: Ben Dooks <ben.dooks at codethink.co.uk>
> ---
> Makefile | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/Makefile b/Makefile
> index 2d964ec..7c43d93 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -687,6 +687,8 @@ clean:
> $(CMD_PREFIX)mkdir -p $(build_dir)
> $(if $(V), @echo " RM $(build_dir)/*.o")
> $(CMD_PREFIX)find $(build_dir) -type f -name "*.o" -exec rm -rf {} +
> + $(if $(V), @echo " RM $(build_dir)/*.carray.c")
> + $(CMD_PREFIX)find $(build_dir) -type f -name "*.carray.c" -exec rm -rf {} +
> $(if $(V), @echo " RM $(build_dir)/*.a")
> $(CMD_PREFIX)find $(build_dir) -type f -name "*.a" -exec rm -rf {} +
> $(if $(V), @echo " RM $(build_dir)/*.elf")
> --
> 2.37.2.352.g3c44437643
>
Reviewed-by: Andrew Jones <ajones at ventanamicro.com>
More information about the opensbi
mailing list