14 lines
203 B
Makefile
14 lines
203 B
Makefile
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
PROG= mount_hpfs
|
||
|
SRCS= mount_hpfs.c getmntopts.c
|
||
|
MAN8= mount_hpfs.8
|
||
|
|
||
|
MOUNT= ${.CURDIR}/../mount
|
||
|
CFLAGS+= -I${.CURDIR}/../../sys -I${MOUNT} -DHPFS
|
||
|
.PATH: ${MOUNT}
|
||
|
|
||
|
.include <bsd.prog.mk>
|