Files
cgraphics/Makefile
2022-06-07 15:39:48 +02:00

12 lines
127 B
Makefile

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