From 913b34588ffaf769d693ce91e322f8b67dc7817f Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 19 Oct 2025 22:25:24 +0100 Subject: build: simplify looking for library files --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 3374bab..a3b91c6 100644 --- a/build.sh +++ b/build.sh @@ -4,7 +4,7 @@ set -xe CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined -Wswitch -Wswitch-enum" LINK="-I." -LIB="impl/sv.c impl/vec.c impl/symtable.c impl/tag.c impl/constructor.c impl/stream.c impl/sys.c" +LIB=$(find "./impl" -name "*.c" -not -name "main.c" -not -name "test.c") OUT="alisp.out" build() { -- cgit v1.2.3-13-gbd6f