scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 68d86d1610cbeeac130c9f2f3258d1887da6828d
parent 8e343dcff4d72f3de1eacb7a928b49c2a2f643cd
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  4 Nov 2024 09:18:18 +0100

build/libc: Remove .5? objects too

Diffstat:
Msrc/libc/.gitignore | 11++++++-----
Msrc/libc/rules.mk | 2+-
2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/libc/.gitignore b/src/libc/.gitignore @@ -1,5 +1,6 @@ -*.6* -*.7* -*.8* -*.z* -*.q* +*.5? +*.6? +*.7? +*.8? +*.z? +*.q? diff --git a/src/libc/rules.mk b/src/libc/rules.mk @@ -28,7 +28,7 @@ $(CRT): crt.$O clean: clean-libc clean-libc: FORCE - rm -f *.6? *.7? *.8? *.z *.q + rm -f *.5? *.6? *.7? *.8? *.z *.q .c.$O: $(CC) $(PROJ_CFLAGS) -o $@ -c $<