aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-10-19 22:25:24 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-10-19 22:25:24 +0100
commit913b34588ffaf769d693ce91e322f8b67dc7817f (patch)
tree7daacdf3a2837e6ce5d48e7eb0fa4dc9c10d41d2
parent10c391367d82790eea3b3a736c54973dc1982ff7 (diff)
downloadalisp-913b34588ffaf769d693ce91e322f8b67dc7817f.tar.gz
alisp-913b34588ffaf769d693ce91e322f8b67dc7817f.tar.bz2
alisp-913b34588ffaf769d693ce91e322f8b67dc7817f.zip
build: simplify looking for library files
-rw-r--r--build.sh2
1 files changed, 1 insertions, 1 deletions
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() {