Update makefile
This commit is contained in:
parent
1770ea2a85
commit
d84c22a2f8
25
makefile
25
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"
|
||||
echo "Cleaning build directory"
|
||||
|
||||
rm -rf "./Build"
|
||||
|
||||
echo "Finished cleaning build directory"
|
Loading…
Reference in New Issue
Block a user