@@ -1,11 +1,9 @@
CC=gcc
OL=Ofast
CFLAGS=-Ofast -lm
BIN=torus
build: torus.c
$(BIN): $(BIN).c
$(CC) -$(OL) -o torus.out torus.c -lm
$(CC) $(CFLAGS) $(BIN).c -o $(BIN)
run: torus.out
clean: $(BIN)
./torus.out
rm $(BIN)
clean: torus.out
rm torus.out
The note is not visible to the blocked user.