diff options
author | wollman <wollman@FreeBSD.org> | 1996-11-19 20:42:43 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-11-19 20:42:43 +0000 |
commit | b91551e88365a1a4ef273e599fe34d6f77871fa0 (patch) | |
tree | f1f14ad5f16bf46af2a45b6ee7cea62b68242de0 /sbin/routed/Makefile | |
parent | fce827276a44ea79290a5de5c4d5a5ea905d83d6 (diff) | |
download | FreeBSD-src-b91551e88365a1a4ef273e599fe34d6f77871fa0.zip FreeBSD-src-b91551e88365a1a4ef273e599fe34d6f77871fa0.tar.gz |
Merge from vendor branch and use system MD5 library.
Diffstat (limited to 'sbin/routed/Makefile')
-rw-r--r-- | sbin/routed/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index b17fd70..4d6ea8f 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -1,10 +1,13 @@ # From: @(#)Makefile 8.1 (Berkeley) 6/19/93 -# $Id$ +# $Id: Makefile,v 1.2 1996/09/16 17:03:27 wollman Exp $ PROG= routed -SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c +SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c \ + trace.c MAN8= routed.8 SUBDIR= rtquery +LDADD+= -lmd +DPADD+= ${LIBMD} #COPTS= -g -DDEBUG -Wall .include <bsd.prog.mk> |