#!/usr/bin/bash

CC=clang
CFLAGS="-g -Wall -Werror -Wpedantic"
SRC=*.c
OUT=main

set -x
$CC $CFLAGS $SRC -o $OUT