all: server client echo "Making Bryce Schroeder's Chat program.." server: server.c commands.c chat.h chat.c gcc -g --std=c99 server.c chat.c -o chatserver client: client.c commands.c chat.h chat.c gcc -DCLIENT -g --std=c99 client.c chat.c -o chat