Removed vestiges of mount_mfs. Sorted the Makefile a bit.

This commit is contained in:
bde 2002-03-18 02:23:43 +00:00
parent 0b0823a755
commit bb14f0993b
2 changed files with 3 additions and 15 deletions

View File

@ -2,13 +2,9 @@
# $FreeBSD$
PROG= newfs
SRCS= getmntopts.c newfs.c mkfs.c
SRCS= newfs.c mkfs.c
CFLAGS+=-DFSIRAND
WARNS?= 2
MAN= newfs.8
MOUNT= ${.CURDIR}/../mount
CFLAGS+=-DFSIRAND -I${MOUNT}
WARNS?= 2
.PATH: ${MOUNT}
.include <bsd.prog.mk>

View File

@ -75,14 +75,6 @@ static const char rcsid[] =
#include <varargs.h>
#endif
#include "mntopts.h"
struct mntopt mopts[] = {
MOPT_STDOPTS,
MOPT_ASYNC,
{ NULL },
};
#if __STDC__
void fatal(const char *fmt, ...) __printflike(1, 2);
#else