bunny -> 🐇

This commit is contained in:
ari melody 2026-04-27 21:47:48 +01:00
commit 46d0d5cce0
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E
3 changed files with 254 additions and 0 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
.PHONY: all
all: server
server:
$(CC) -O2 -g -o server src/main.c
clean:
rm -rf server