summaryrefslogtreecommitdiff
path: root/makefile
blob: c22e322d47fe5b8ccc82a2a9e85844b97557c868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = gcc
CFLAGS = -pthread

all: chatserver chatclient

chatserver: main.c client.c chatroom.c
	$(CC) $(CFLAGS) -o chatserver main.c client.c chatroom.c

chatclient: clientbin.c
	$(CC) $(CFLAGS) -o chatclient clientbin.c

clean:
	rm -f chatserver chatclient