Files
chat/Makefile
2026-05-27 23:20:00 +03:00

8 lines
185 B
Makefile

chatserver: chatserver.c
cc chatserver.c -o chatserver -O3
chatclient-cli: chatclient-cli.c
cc chatclient-cli.c -o chatclient-cli -lpthread -lncurses
all: chatserver chatclient-cli