@ -0,0 +1,11 @@
CC := gcc
CFLAGS := -Wall -Wextra -Werror -pedantic -std=c99 -g
OBJS := main.o
TARGET := main
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $^
.PHONY: clean
clean:
rm -f $(OBJS) $(TARGET)
The note is not visible to the blocked user.