1# $FreeBSD$
2
3PROG = mount_reiserfs
4SRCS = mount_reiserfs.c getmntopts.c
5MAN  = mount_reiserfs.8
6
7# mount_reiserfs needs mntopts.h and getmntopts.c from src/sbin/mount/
8MOUNT  ?= ${.CURDIR}/../mount
9CFLAGS += -I${MOUNT}
10
11.PATH: ${MOUNT}
12
13.include <bsd.prog.mk>
14