CFLAGS = -O2 -g

all: tcp_server tcp_client

tcp_server: tcp_server.c

tcp_client:	tcp_client.c
	gcc -o tcp_client tcp_client.c -lreadline
