6 lines
184 B
Bash
Executable File
6 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
CFLAGS=${CFLAGS:-"-Og -fsanitize=address -ggdb"}
|
|
CC=${CC:-gcc}
|
|
set -x
|
|
${CC} -DDEBUG -pipe -Wall -Wextra -Wno-unused-parameter -Wno-unused-variable -std=gnu23 $CFLAGS src/*c
|