6 lines
86 B
Bash
Executable File
6 lines
86 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -xe
|
|
CFLAGS="-Wall -Werror -std=c11 -ggdb"
|
|
|
|
gcc $CFLAGS -o ttt main.c |