initial commit

This commit is contained in:
2026-05-27 23:16:48 +03:00
commit 43db4c3894
4 changed files with 649 additions and 0 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
chatserver: chatserver.c
cc chatserver.c -o chatserver -O3
#chatclient: chatclient.c
# gcc -o chatclient chatclient.c `pkg-config --cflags --libs gtk+-3.0` -lpthread
chatclient-cli: chatclient-cli.noc
cc chatclient-cli.c -o chatclient-cli -lpthread -lncurses
all: chatserver chatclient-cli