event-system/compile

10 lines
120 B
Bash
Executable File

#!/bin/bash
CC=clang
CFLAGS="-g -Wall"
CXXFLAGS="-g -Wall"
SRC="src/*.c"
OUT=main
(set -x ; $CC $CFLAGS $SRC -o $OUT)