diff options
| author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-19 22:25:24 +0100 |
|---|---|---|
| committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2025-10-19 22:25:24 +0100 |
| commit | 913b34588ffaf769d693ce91e322f8b67dc7817f (patch) | |
| tree | 7daacdf3a2837e6ce5d48e7eb0fa4dc9c10d41d2 /build.sh | |
| parent | 10c391367d82790eea3b3a736c54973dc1982ff7 (diff) | |
| download | alisp-913b34588ffaf769d693ce91e322f8b67dc7817f.tar.gz alisp-913b34588ffaf769d693ce91e322f8b67dc7817f.tar.bz2 alisp-913b34588ffaf769d693ce91e322f8b67dc7817f.zip | |
build: simplify looking for library files
Diffstat (limited to 'build.sh')
| -rw-r--r-- | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() { |
