#
#	ntalkd with TNSDrive BBS support
#

PROG=	talkd
SRC=	talkd.c announce.c process.c table.c print.c ttymsg.c
OBJ=	$(SRC:.c=.o)

CC=	shlicc2
CFLAGS=	-O2

$(PROG): $(OBJ)
	$(CC) $(OBJ) -o $(PROG)

clean:
	rm -f $(OBJ) $(PROG)
