sic

The sic programming language, compiler and tools (WIP)
Log | Files | Refs

commit 15366dcdc6575464eb62967b95eac72a6e79b934
parent b1b5ba5aa10a7afbf3bbac48b808ddaff057856e
Author: keyle <keyle@capsule.org>
Date:   Thu, 14 May 2026 21:29:09 +1000

minor

Diffstat:
Mmakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/makefile b/makefile @@ -1,4 +1,4 @@ -cmp = clang +lzcmp = clang warn = -Wall -Wextra pedantic = -Wpedantic -Werror debug = -O1 -g @@ -33,5 +33,5 @@ test: clean fast | xargs -0 -r -P$(jobs) -n1 sh -c 'printf "%s\n" "$$1" 1>&2; exec ./$(BINARY) --quiet "$$1" >/dev/null' sh test-slow: clean fast - +@find . -maxdepth 1 -name '*.sic' -print0 \ + +@find . -mindepth 2 -maxdepth 3 -name '*.sic' -print0 \ | xargs -0 -r -P1 -n1 sh -c 'printf "%s\n" "$$1" 1>&2; exec ./$(BINARY) --quiet "$$1" >/dev/null' sh