From f379c1c4c80947365eb6c4046c3ab165629dc8cd Mon Sep 17 00:00:00 2001 From: Sanjit Bhat Date: Mon, 2 Oct 2023 16:22:42 -0500 Subject: ignore & clean dSYM files --- .gitignore | 1 + Makefile | 10 ++++------ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 5c33438..29977c9 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,4 @@ ph barrier /lab-*.json .DS_Store +*.dSYM diff --git a/Makefile b/Makefile index 365c91b..473a471 100644 --- a/Makefile +++ b/Makefile @@ -265,14 +265,12 @@ fs.img: mkfs/mkfs README $(UEXTRA) $(UPROGS) -include kernel/*.d user/*.d -clean: - rm -f *.tex *.dvi *.idx *.aux *.log *.ind *.ilg \ +clean: + rm -f *.tex *.dvi *.idx *.aux *.log *.ind *.ilg *.dSYM *.zip \ */*.o */*.d */*.asm */*.sym \ - $U/initcode $U/initcode.out $K/kernel fs.img \ - mkfs/mkfs .gdbinit \ - $U/usys.S \ + $U/initcode $U/initcode.out $K/kernel $U/usys.S \ + mkfs/mkfs fs.img .gdbinit \ $(UPROGS) \ - *.zip \ ph barrier # try to generate a unique GDB port -- cgit v1.2.3