diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-21 08:48:07 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 1999-12-21 08:48:07 +0000 |
commit | 99a148e6e138b480c510edaf5d955e521830eed4 (patch) | |
tree | 877fc0be21a77ddf6f9999884d5a1c46df5b2468 /usr.sbin | |
parent | 4ff44393c449d1e4cd59bb7d858a210475688f1e (diff) |
rcsid police. add Makefile. add gifconfig to SUBDIR.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/gifconfig/Makefile | 8 | ||||
-rw-r--r-- | usr.sbin/gifconfig/gifconfig.8 | 6 | ||||
-rw-r--r-- | usr.sbin/gifconfig/gifconfig.c | 2 |
4 files changed, 16 insertions, 4 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 3929891f234..642d2db1180 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.52 1999/12/20 16:36:07 itojun Exp $ +# $OpenBSD: Makefile,v 1.53 1999/12/21 08:48:04 itojun Exp $ # not yet done: catman @@ -17,7 +17,7 @@ SUBDIR= ac accton adduser amd arp bootpd bootpgw bootpef bootptest \ vipw vnconfig zdump zic # IPv6 -SUBDIR+=faithd ifmcstat ndp route6d rtadvd rtsold +SUBDIR+=faithd gifconfig ifmcstat ndp route6d rtadvd rtsold .if (${AFS} == "yes") SUBDIR+=afs diff --git a/usr.sbin/gifconfig/Makefile b/usr.sbin/gifconfig/Makefile new file mode 100644 index 00000000000..f17a2970654 --- /dev/null +++ b/usr.sbin/gifconfig/Makefile @@ -0,0 +1,8 @@ +# $OpenBSD: Makefile,v 1.1 1999/12/21 08:48:06 itojun Exp $ + +PROG= gifconfig +MAN= gifconfig.8 + +CPPFLAGS+= -DINET6 + +.include <bsd.prog.mk> diff --git a/usr.sbin/gifconfig/gifconfig.8 b/usr.sbin/gifconfig/gifconfig.8 index 0b3858deade..4382a63afa9 100644 --- a/usr.sbin/gifconfig/gifconfig.8 +++ b/usr.sbin/gifconfig/gifconfig.8 @@ -1,3 +1,5 @@ +.\" $OpenBSD: gifconfig.8,v 1.2 1999/12/21 08:48:06 itojun Exp $ +.\" .\" Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. .\" All rights reserved. .\" @@ -25,11 +27,11 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $Id: gifconfig.8,v 1.1 1999/12/21 08:45:40 itojun Exp $ +.\" KAME Id: gifconfig.8,v 1.1.1.1 1999/12/21 08:45:40 itojun Exp .\" .Dd May 17, 1998 .Dt GIFCONFIG 8 -.Os KAME +.Os .\" .Sh NAME .Nm gifconfig diff --git a/usr.sbin/gifconfig/gifconfig.c b/usr.sbin/gifconfig/gifconfig.c index f5bdbb40d65..b7681d04d4f 100644 --- a/usr.sbin/gifconfig/gifconfig.c +++ b/usr.sbin/gifconfig/gifconfig.c @@ -1,3 +1,5 @@ +/* $OpenBSD: gifconfig.c,v 1.2 1999/12/21 08:48:06 itojun Exp $ */ + /* * Copyright (c) 1983, 1993 * The Regents of the University of California. All rights reserved. |