From d84c22a2f8b0ee111d30634e96cba7101be4ae43 Mon Sep 17 00:00:00 2001 From: AUnicornWithNoLife <55228370+AUnicornWithNoLife@users.noreply.github.com> Date: Tue, 25 Oct 2022 13:52:03 +0100 Subject: [PATCH] Update makefile --- makefile | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/makefile b/makefile index 15f3266..c309d2e 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,25 @@ -build: main.c - echo "BUILDING" +build: main.c font.h + echo "Building executable" + + mkdir -p "./Build" - mkdir "./Build" cc main.c -o "./Build/Big Letter" - echo "BUILT" + echo "Finished building executable" + echo "Executable is located at './Build/Big Letter'" + +usage: + echo "Big Letter Usage:" + echo "Location: ./Build/Big Letter" + echo "Arguments:" + echo "Required: Input Text" + echo "Optional: Replacement True and False Characters" + echo "Optional: Verbose" + echo "'./Build/Big Letter' 'INPUT TEXT' 'TRUE CHAR' 'FALSE CHAR' 'v FOR VERBOSE" clean: - rm -rf "./Build" \ No newline at end of file + echo "Cleaning build directory" + + rm -rf "./Build" + + echo "Finished cleaning build directory" \ No newline at end of file