cube/Makefile

7 lines
75 B
Makefile

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