2d68bf45bf
Binary builds that cannot handle this must explicitly set WARNS=0. Reviewed by: mike
18 lines
213 B
Makefile
18 lines
213 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PROG= mount_ntfs
|
|
SRCS= mount_ntfs.c getmntopts.c
|
|
MAN= mount_ntfs.8
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+=-I${MOUNT}
|
|
WARNS= 0
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|