From 6afd2ad97b30d6cc969d314e8fe4031c37365422 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Mon, 29 May 2023 22:23:05 +0100 Subject: [PATCH] INITIAL COMMIT --- build | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 build diff --git a/build b/build new file mode 100755 index 0000000..3e9843c --- /dev/null +++ b/build @@ -0,0 +1,9 @@ +#!/usr/bin/bash + +CC=clang++ +CFLAGS="-g -Wall -Werror -pedantic" +SRC=*.cpp +OUT=main + +set -x +$CC $CFLAGS $SRC -o $OUT