# Makefile for the ParcPlace Systems Socket usage examples
#
# See commments in Socket.st and myecho.c

CFLAGS = -O
#CFLAGS = -g -DDEBUG
server: server.c
	cc $(CFLAGS)  -o server server.c

