5157971af5
- reorder "special" validation to after option parsing - use getopt(3) instead of homegrown code - add getnum() to parse and validate a number - clean up man page - ansi KNF, WARNS=2
12 lines
222 B
Makefile
12 lines
222 B
Makefile
# $NetBSD: Makefile,v 1.10 2001/08/19 09:39:24 lukem Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
|
|
PROG= tunefs
|
|
MAN= tunefs.8
|
|
SRCS= tunefs.c ffs_bswap.c
|
|
.PATH: ${.CURDIR}/../../sys/ufs/ffs
|
|
|
|
WARNS?=2
|
|
|
|
.include <bsd.prog.mk>
|