update makefile

This commit is contained in:
Ole Morud
2022-06-07 15:39:48 +02:00
parent 5be3a4ce48
commit d48a3b8de1

View File

@@ -1,11 +1,11 @@
all:
mkdir -p bin
cc graphics.c -o bin/graphics -lm -O3
cc *.c -o bin/graphics -lm -O3
clean:
rm -rf bin/
debug:
mkdir -p bin
cc graphics.c -o bin/graphics -lm -g3
cc *.c -o bin/graphics -lm -g3