Create makefile

This commit is contained in:
AUnicornWithNoLife 2022-10-25 13:35:47 +01:00
parent 538aac82d6
commit d8d052eb70

10
makefile Normal file
View File

@ -0,0 +1,10 @@
build: main.c
echo "BUILDING"
mkdir "./Build"
cc main.c -o "./Build/Big Letter"
echo "BUILT"
clean:
rm -rf "./Build"