diff options
author | bde <bde@FreeBSD.org> | 2000-03-27 16:23:20 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2000-03-27 16:23:20 +0000 |
commit | de637eeac51797684c7c03d3001e464facc56ca2 (patch) | |
tree | 521d217b6e6f85725d8b80609687d032dc8a729c /sbin | |
parent | d5aa63b724deb4c25a53493914491b1985417010 (diff) | |
download | FreeBSD-src-de637eeac51797684c7c03d3001e464facc56ca2.zip FreeBSD-src-de637eeac51797684c7c03d3001e464facc56ca2.tar.gz |
Use the same order in DPADD as in LDADD so that `make checkdpadd' doesn't
report an error for it.
Fixed some style bugs (the usual ones for DPADD and LDADD, and
misformatting).
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mount_nwfs/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sbin/mount_nwfs/Makefile b/sbin/mount_nwfs/Makefile index 5340596..0c3d478 100644 --- a/sbin/mount_nwfs/Makefile +++ b/sbin/mount_nwfs/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD$ PROG= mount_nwfs SRCS= mount_nwfs.c getmntopts.c @@ -6,10 +6,9 @@ MAN8= mount_nwfs.8 MOUNT= ${.CURDIR}/../mount CFLAGS+= -DNWFS -I${MOUNT} - .PATH: ${MOUNT} -LDADD+= -lncp -lipx -DPADD+= ${LIBIPX} ${LIBNCP} +DPADD= ${LIBNCP} ${LIBIPX} +LDADD= -lncp -lipx .include <bsd.prog.mk> |