mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
9d08570309
commit
f68c4d880f
2 changed files with 6 additions and 8 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue