From 6380534eb04181be808d18d44f71db9846471552 Mon Sep 17 00:00:00 2001 From: Ed Schaller Date: Sun, 27 Aug 2023 18:08:30 -0600 Subject: [PATCH] Ignore and clean built src util-makeguids.c util-makeguids.c is copied from util.c at build time. This patch adds it to .gitignore and to the files cleaned by make clean. Signed-off-by: Ed Schaller --- src/.gitignore | 1 + src/Makefile | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/.gitignore b/src/.gitignore index 6e8c408c..9e1cc235 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -9,3 +9,4 @@ makeguids guid-symbols.c guids.lds thread-test +util-makeguids.c diff --git a/src/Makefile b/src/Makefile index 7a32cd41..6fc2a622 100644 --- a/src/Makefile +++ b/src/Makefile @@ -135,8 +135,9 @@ deps : $(ALL_SOURCES) clean : @rm -rfv *~ *.o *.a *.E *.so *.so.* *.pc *.bin .*.d *.map \ - makeguids guid-symbols.c include/efivar/efivar-guids.h \ - $(TARGETS) $(STATICTARGETS) + makeguids guid-symbols.c util-makeguids.c \ + include/efivar/efivar-guids.h $(TARGETS) \ + $(STATICTARGETS) @# remove the deps files we used to create, as well. @rm -rfv .*.P .*.h.P *.S.P include/efivar/.*.h.P