8f89943eda
automatically have random generation numbers. The kenel way of handling those also changed. Further it is advised to run fsirand on all your nfs exported filesystems. the code is mostly copied from OpenBSD, with the randomization chanegd to use /dev/urandom Reviewed by: Garrett Obtained from: OpenBSD
16 lines
362 B
Makefile
16 lines
362 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/27/94
|
|
|
|
PROG= newfs
|
|
SRCS= dkcksum.c getmntopts.c newfs.c mkfs.c
|
|
MAN8= newfs.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
CFLAGS+= -D_NEW_VFSCONF
|
|
CFLAGS+=-DMFS -DFSIRAND -I${MOUNT}
|
|
.PATH: ${MOUNT} ${.CURDIR}/../disklabel
|
|
|
|
LINKS= ${BINDIR}/newfs ${BINDIR}/mount_mfs
|
|
MLINKS= newfs.8 mount_mfs.8 newfs.8 mfs.8 newfs.8 tmpfs.8
|
|
|
|
.include <bsd.prog.mk>
|