@@ -0,0 +1,21 @@
all: app
app: main.c
@gcc -std=c23 -ggdb -Wall -Wextra -pedantic -O0 main.c -o app
.PHONY: clean run test debug
clean:
@rm -rf app
run: app
-@./app
test: app
@valgrind ./app
debug: app
@gdb ./app
The note is not visible to the blocked user.