mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
a7ffc94849
It's not really useful in a jail or in a mdroot or even if a users wants to do a full zfs machine. Reviewed by: mckusick Differential Revision: https://reviews.freebsd.org/D36227
17 lines
229 B
Makefile
17 lines
229 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=ufs
|
|
PROG= tunefs
|
|
SRCS= tunefs.c getmntopts.c
|
|
LIBADD= ufs
|
|
MAN= tunefs.8
|
|
|
|
MOUNT= ${SRCTOP}/sbin/mount
|
|
CFLAGS+= -I${MOUNT}
|
|
.PATH: ${MOUNT}
|
|
|
|
WARNS?= 3
|
|
|
|
.include <bsd.prog.mk>
|