#!/usr/bin/bash CC=clang++ CFLAGS="-g -Wall -Werror -pedantic" SRC=*.cpp OUT=main set -x $CC $CFLAGS $SRC -o $OUT