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).
This commit is contained in:
Bruce Evans 2000-03-27 16:23:20 +00:00
parent 9d08570309
commit f68c4d880f
2 changed files with 6 additions and 8 deletions

View file

@ -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>

View file

@ -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>