diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-09 15:10:50 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-09 15:10:50 +0000 |
commit | ed654e801ef216f3f614e23c0a18c6fb3de68856 (patch) | |
tree | 10793c70506c0de761999cde488378bfa61ff4c1 /sbin/rtsol | |
parent | e81fedf11966b1319ff9cc32a21757dc59a0485c (diff) |
rtsold(8); router solicitation daemon.
rtsol(8); router solicitation program, for use in bootstrap process
(statically linked)
rcsid police. add missing prototypes.
(sync with KAME)
Diffstat (limited to 'sbin/rtsol')
-rw-r--r-- | sbin/rtsol/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sbin/rtsol/Makefile b/sbin/rtsol/Makefile new file mode 100644 index 00000000000..98220904450 --- /dev/null +++ b/sbin/rtsol/Makefile @@ -0,0 +1,15 @@ +# $OpenBSD: Makefile,v 1.1 1999/12/09 15:10:49 itojun Exp $ + +PROG= rtsol +SRCS= rtsold.c rtsol.c if.c probe.c dump.c + +CPPFLAGS+=-DINET6 +LDADD+= -lkvm +DPADD+= ${LIBKVM} + +#MAN= rtsold.8 +NOMAN= yes + +.PATH: ${.CURDIR}/../../usr.sbin/rtsold + +.include <bsd.prog.mk> |