I'm going to implement a normal stable vector instead of an inline vector so we have both options for use. I think that's smarter than just sticking to one.
10 lines
205 B
Bash
10 lines
205 B
Bash
#!/usr/bin/env sh
|
|
|
|
CFLAGS="-Wall -Wextra -std=c11 -ggdb -fsanitize=address -fsanitize=undefined"
|
|
SRC="ivec.c symtable.c tag.c constructor.c sys.c main.c"
|
|
OUT="alisp.out"
|
|
|
|
set -xe
|
|
|
|
cc $CFLAGS -o $OUT $SRC;
|