Big-Letter/makefile

10 lines
124 B
Makefile
Raw Normal View History

2022-10-25 12:35:47 +00:00
build: main.c
echo "BUILDING"
mkdir "./Build"
cc main.c -o "./Build/Big Letter"
echo "BUILT"
clean:
rm -rf "./Build"