diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..449a574 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ + +all: + mkdir -p bin + cc graphics.c -o bin/graphics -lm -O3 + +clean: + rm -rf bin/ + +debug: + mkdir -p bin + cc graphics.c -o bin/graphics -lm -g3