diff --git a/Makefile b/Makefile index 449a574..37f8825 100644 --- a/Makefile +++ b/Makefile @@ -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