aboutsummaryrefslogtreecommitdiff
path: root/compile.sh
blob: 956890738c99fa25b65e17add6fccae19d6b428b (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

CC=gcc
CFLAGS="-Wall -Wextra -Werror -ggdb3"
SRCS=cup/*.c

set -xe

$CC $CFLAGS $SRCS -o cupcc