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