A very messy demo of a broadcast

This commit is contained in:
2026-01-04 16:24:36 +01:00
commit 36ae15c320
5 changed files with 369 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
CC = gcc
CFLAGS = -Wall -I.
all: client server
client:
mkdir -p build
$(CC) $(CFLAGS) -o build/client client.c
server:
mkdir -p build
$(CC) $(CFLAGS) -o build/server server.c
clean:
rm -f client server