11 lines
107 B
Bash
Executable File

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