@@ -0,0 +1,13 @@
CC=cc
SRC=main.c
EXE=main
all: $(EXE)
$(EXE): $(SRC)
$(CC) $(SRC) -o $(EXE)
.PHONY: clean
clean:
rm -f $(EXE)
The note is not visible to the blocked user.