freebsd-dev/usr.sbin/mount_nwfs/Makefile
Ulrich Spörlein 7f72022f3d mount_nwfs(8): make WARNS=6 clean
uid_t and gid_t are unsigned. While initializing them to -1 and later
checking against -1 to see if they are still at their default usually
works, introduce two new flags and stop the inband signalling.

Approved by:	ed (co-mentor)
2010-03-04 16:07:14 +00:00

16 lines
231 B
Makefile

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