blob: 08a0c3c7e5a5e33e1a9e632bbca795754185b30d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# @(#)Makefile 8.3 (Berkeley) 3/27/94
# $FreeBSD$
PROG= mount_ext2fs
SRCS= mount_ext2fs.c getmntopts.c
MAN= mount_ext2fs.8
WARNS?= 2
MOUNT= ${.CURDIR}/../mount
CFLAGS+= -I${MOUNT}
.PATH: ${MOUNT}
.include <bsd.prog.mk>
|