From d8d052eb708a5231aa8d801f1a764e71acb6dd06 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife <55228370+AUnicornWithNoLife@users.noreply.github.com> Date: Tue, 25 Oct 2022 13:35:47 +0100 Subject: [PATCH] Create makefile --- makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..15f3266 --- /dev/null +++ b/makefile @@ -0,0 +1,10 @@ +build: main.c + echo "BUILDING" + + mkdir "./Build" + cc main.c -o "./Build/Big Letter" + + echo "BUILT" + +clean: + rm -rf "./Build" \ No newline at end of file