mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
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
15 lines
362 B
Makefile
15 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>
|