11 lines
295 B
Makefile
11 lines
295 B
Makefile
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
|