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: all:
mkdir -p bin mkdir -p bin
cc graphics.c -o bin/graphics -lm -O3 cc *.c -o bin/graphics -lm -O3
clean: clean:
rm -rf bin/ rm -rf bin/
debug: debug:
mkdir -p bin mkdir -p bin
cc graphics.c -o bin/graphics -lm -g3 cc *.c -o bin/graphics -lm -g3