@@ -0,0 +1,12 @@
CC = gcc
CFLAGS = -Wall -Wextra -Wpedantic -std=c23
TARGET = fatalspin
SOURCE = main.c
$(TARGET): $(SOURCE)
$(CC) $(CFLAGS) -o $(TARGET) $(SOURCE)
clean:
rm -f $(TARGET)
.PHONY: clean
The note is not visible to the blocked user.