##
## Makefile for Telnet Negotiation Code
##
## @(#)Makefile	1.2	(NCSA)	8/6/87
##

CPPFLAGS= -I../Main
CFLAGS= -g $(CPPFLAGS)
SRC= parse.c parsewrite.c
OBJ= parse.o parsewrite.o

.c.o:
	cc -c $(CFLAGS) $*.c

libtn.a:	$(OBJ)
	ar cr $@ $(OBJ)
	ranlib $@

depend:
	maketd $(CPPFLAGS) $(SRC)

# DO NOT DELETE THIS LINE - make depend DEPENDS ON IT
A=../Main

parse.o: $A/defs.h $A/session.h parse.c

parsewrite.o: $A/defs.h $A/session.h parsewrite.c

# *** Do not add anything here - It will go away. ***
