mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 14:56:13 +01:00
98acad147a
Reviewed by: jhb, emaste Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D8822
17 lines
232 B
Makefile
17 lines
232 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
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>
|