Remove impl folder

This commit is contained in:
2025-10-19 23:04:04 +01:00
parent 913b34588f
commit 66c5134eb5
11 changed files with 13 additions and 291 deletions

View File

@@ -4,7 +4,7 @@ set -xe
CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined -Wswitch -Wswitch-enum"
LINK="-I."
LIB=$(find "./impl" -name "*.c" -not -name "main.c" -not -name "test.c")
LIB=$(find "./" -name "*.c" -not -name "main.c" -not -name "test.c")
OUT="alisp.out"
build() {