From 700c3b1d1b3ed835ffab3fd502ab91baba8e2d1f Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 1 Sep 2025 21:26:01 +0100 Subject: Move implementation files into their own folder main.c and test.c generate binary executables so they can stay in the main folder, but the rest can go into their own dedicated folder to make it look nicer --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index 6e42066..d7aa185 100644 --- a/build.sh +++ b/build.sh @@ -3,8 +3,8 @@ set -xe CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined" -LINK="" -LIB="sv.c vec.c symtable.c tag.c constructor.c stream.c sys.c" +LINK="-I." +LIB="impl/sv.c impl/vec.c impl/symtable.c impl/tag.c impl/constructor.c impl/stream.c impl/sys.c" OUT="alisp.out" build() { -- cgit v1.2.3-13-gbd6f