summaryrefslogtreecommitdiff
path: root/makefile
blob: 41d3b132c1f0f16ef364f6b377e74567248c8509 (plain)
1
2
3
4
all: chatserver

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