mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
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)
15 lines
231 B
Makefile
15 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>
|