cube/Makefile
violette 4f8fde9eb5 fix: now working on glibc
fixed a bug were stdin was set to nonblocking and never reset back to blocking.
This caused STDOUT to become nonblock, and for some reason glibc cannot deal
with it, but every other libc could. uh.
2025-05-13 00:48:24 -04:00

7 lines
82 B
Makefile

CFLAGS = -lm
build:
cc ./main.c $(CFLAGS) -DVBUF -o ./cube
run: build
./cube