Create Makefile

This commit is contained in:
Ole Morud
2022-06-07 12:23:20 +02:00
parent 02a621e0de
commit 12fa471a64

11
Makefile Normal file
View File

@@ -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