minor tweaks.

This commit is contained in:
mrg 1996-11-18 10:15:09 +00:00
parent 6f98abee6a
commit 374d8a5b5a
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.2 1996/10/06 18:08:15 cgd Exp $
# $NetBSD: Makefile,v 1.3 1996/11/18 10:15:09 mrg Exp $
# XXX - are these useful for users?
# XXX - is this useful for users?
#SUBDIR= dhclient
PROG= dhcpd

View File

@ -1,6 +1,6 @@
#! /bin/sh
#
# $NetBSD
# $NetBSD: dhcp2netbsd,v 1.2 1996/11/18 10:15:11 mrg Exp $
#
# Copyright (c) 1996 Matthew R. Green
# All rights reserved.
@ -15,7 +15,8 @@
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by Matthew R. Green.
# This product includes software developed by Matthew R. Green for
# the NetBSD Project.
# 4. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
@ -58,9 +59,9 @@ mkdir dhclient
echo creating Makefile
cat > Makefile<<'__eof_makefile'
# $NetBSD: dhcp2netbsd,v 1.1 1996/10/03 06:57:19 mrg Exp $
# $NetBSD: dhcp2netbsd,v 1.2 1996/11/18 10:15:11 mrg Exp $
# XXX - are these useful for users?
# XXX - is this useful for users?
#SUBDIR= dhclient
PROG= dhcpd
@ -69,13 +70,12 @@ SRCS= options.c errwarn.c convert.c tree.c memory.c alloc.c print.c hash.c \
dhcp.c bootp.c conflex.c confpars.c db.c
MAN= dhcpd.8 dhcpd.conf.5
.include <bsd.subdir.mk>
.include <bsd.prog.mk>
__eof_makefile
echo creating dhclient Makefile
cat > dhclient/Makefile<<'__eof_dhclient_makefile'
# $NetBSD: dhcp2netbsd,v 1.1 1996/10/03 06:57:19 mrg Exp $
# $NetBSD: dhcp2netbsd,v 1.2 1996/11/18 10:15:11 mrg Exp $
SRCS= dhclient.c options.c errwarn.c convert.c tree.c memory.c alloc.c \
print.c hash.c tables.c inet.c dispatch.c bpf.c packet.c raw.c nit.c \