#	@(#)Makefile	4.6 (Berkeley) 5/7/84
#
ALL=	routed
OBJS=	af.o if.o input.o main.o output.o startup.o tables.o timer.o \
	trace.o inet.o
CFLAGS= -O
DESTDIR=
LDFLAGS= -n

all:	${ALL}

routed: ${OBJS}
	${CC} -o routed ${LDFLAGS} ${OBJS}

install: routed
	install -s routed ${DESTDIR}/etc

clean:
	rm -f routed *.o core a.out t.c linterrs typescript errs
