1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00
freebsd/usr.sbin/mount_nwfs/Makefile
David E. O'Brien 2d68bf45bf Default to WARNS=2.
Binary builds that cannot handle this must explicitly set WARNS=0.

Reviewed by:	mike
2001-12-04 02:19:58 +00:00

17 lines
232 B
Makefile

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