7f72022f3d
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)
16 lines
231 B
Makefile
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>
|