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