]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/mount_reiserfs/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sbin / mount_reiserfs / Makefile
1 # $FreeBSD$
2
3 PROG = mount_reiserfs
4 SRCS = mount_reiserfs.c getmntopts.c
5 MAN  = mount_reiserfs.8
6
7 # mount_reiserfs needs mntopts.h and getmntopts.c from src/sbin/mount/
8 MOUNT  ?= ${.CURDIR}/../mount
9 CFLAGS += -I${MOUNT}
10 WARNS ?= 6
11
12 .PATH: ${MOUNT}
13
14 .include <bsd.prog.mk>