diff options
author | obrien <obrien@FreeBSD.org> | 2001-07-20 06:20:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-07-20 06:20:32 +0000 |
commit | 9c97c8f02d579c6988b1d150fd1c0fa8dacf2e87 (patch) | |
tree | fb97d8f0fea8f93b6e8bb70b86e003cf5cbc2b79 /usr.sbin/bootparamd | |
parent | d3d1b151d3f3f67385b5e5adbbafd20527daa156 (diff) | |
download | FreeBSD-src-9c97c8f02d579c6988b1d150fd1c0fa8dacf2e87.zip FreeBSD-src-9c97c8f02d579c6988b1d150fd1c0fa8dacf2e87.tar.gz |
Perform a major cleanup of the usr.sbin Makefiles.
These are not perfectly in agreement with each other style-wise, but they
are orders of orders of magnitude more consistent style-wise than before.
Diffstat (limited to 'usr.sbin/bootparamd')
-rw-r--r-- | usr.sbin/bootparamd/Makefile | 1 | ||||
-rw-r--r-- | usr.sbin/bootparamd/Makefile.inc | 1 | ||||
-rw-r--r-- | usr.sbin/bootparamd/bootparamd/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/bootparamd/callbootd/Makefile | 4 |
4 files changed, 8 insertions, 2 deletions
diff --git a/usr.sbin/bootparamd/Makefile b/usr.sbin/bootparamd/Makefile index c4f6198..c4e3361 100644 --- a/usr.sbin/bootparamd/Makefile +++ b/usr.sbin/bootparamd/Makefile @@ -1,3 +1,4 @@ +# $FreeBSD$ SUBDIR= bootparamd callbootd diff --git a/usr.sbin/bootparamd/Makefile.inc b/usr.sbin/bootparamd/Makefile.inc index 26c6f1c..1e4d46f 100644 --- a/usr.sbin/bootparamd/Makefile.inc +++ b/usr.sbin/bootparamd/Makefile.inc @@ -1,3 +1,4 @@ # @(#)Makefile.inc 5.1 (Berkeley) 5/11/90 +# $FreeBSD$ BINDIR?= /usr/sbin diff --git a/usr.sbin/bootparamd/bootparamd/Makefile b/usr.sbin/bootparamd/bootparamd/Makefile index 89b879a..d312288 100644 --- a/usr.sbin/bootparamd/bootparamd/Makefile +++ b/usr.sbin/bootparamd/bootparamd/Makefile @@ -2,10 +2,12 @@ # $FreeBSD$ PROG= bootparamd +MAN= bootparams.5 bootparamd.8 SRCS= bootparamd.c main.c ${GENSRCS} GENSRCS=bootparam_prot.h bootparam_prot_svc.c bootparam_prot_xdr.c -MAN= bootparams.5 bootparamd.8 + CFLAGS+= -DTFTP_DIR=\"/tftpboot\" -I. + CLEANFILES= ${GENSRCS} RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x diff --git a/usr.sbin/bootparamd/callbootd/Makefile b/usr.sbin/bootparamd/callbootd/Makefile index 92ae2e5..8db69ea 100644 --- a/usr.sbin/bootparamd/callbootd/Makefile +++ b/usr.sbin/bootparamd/callbootd/Makefile @@ -2,10 +2,12 @@ # $FreeBSD$ PROG= callbootd +NOMAN= #true SRCS= callbootd.c ${GENSRCS} GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c -NOMAN= + CFLAGS+= -I. + CLEANFILES= ${GENSRCS} RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x |