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