freebsd-dev/usr.sbin/mount_nwfs/Makefile
Bruce Evans f68c4d880f 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).
2000-03-27 16:23:20 +00:00

15 lines
223 B
Makefile

# $FreeBSD$
PROG= mount_nwfs
SRCS= mount_nwfs.c getmntopts.c
MAN8= mount_nwfs.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -DNWFS -I${MOUNT}
.PATH: ${MOUNT}
DPADD= ${LIBNCP} ${LIBIPX}
LDADD= -lncp -lipx
.include <bsd.prog.mk>