#
# Makefile for simple chat TCP server 
#
CC = gcc
LDFLAGS = #-static
CFLAGS = -Wall -pedantic #-ansi
PRGS = chat

#
# make binary from sources
#

all: $(PRGS)

chat: chat.o chatd.o errors.o

#
# clean files
#

clean:
	rm *.o
	rm chat

install:
	cp chat ../c_bin/
