@@ -0,0 +1,15 @@
CC = gcc
CFLAGS = -Wall -I.
all: client server
client:
mkdir -p build
$(CC) $(CFLAGS) -o build/client client.c
server:
$(CC) $(CFLAGS) -o build/server server.c
clean:
rm -f client server
The note is not visible to the blocked user.