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