scc

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

commit 1dcb2b233c1ae1acf6cc5d628199d6234d17495a
parent 246b932d16ead352c5ad950316367614b17e2dae
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  8 Oct 2021 01:34:10 +0200

build: Change name of libc-proto to libc-dirs

Libc-proto was really confusing because we are using the word
proto for a different set of files totally unrelated to the
list of directories needed for the libc.

Diffstat:
MMakefile | 6+++---
Rscripts/libc-proto -> scripts/libc-dirs | 0
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -96,10 +96,10 @@ libcrt: dirs src/libcrt src: include/scc/scc tests: all -dirs: $(SCRIPTDIR)/libc-proto - xargs mkdir -p < $(SCRIPTDIR)/libc-proto +dirs: $(SCRIPTDIR)/libc-dirs + xargs mkdir -p < $(SCRIPTDIR)/libc-dirs touch dirs clean: - xargs rm -rf < $(SCRIPTDIR)/libc-proto + xargs rm -rf < $(SCRIPTDIR)/libc-dirs rm -f dirs diff --git a/scripts/libc-proto b/scripts/libc-dirs