# $NetBSD: Makefile,v 1.2 2020/04/18 12:56:38 jdolecek Exp $ # Build a smaller newfs (i.e. for boot media). # Support for Endian-Independent FFS and Apple UFS is dropped unless FFS_EI=1 # and APPLE_UFS=1 are added to CRUNCHENV, respectively. NOMAN= # defined .include SRCDIR= ${.CURDIR}/../../../sbin/newfs .ifdef FFS_EI SRCS+= ffs_bswap.c .else CPPFLAGS+= -DNO_FFS_EI .endif .ifdef APPLE_UFS SRCS+= ffs_appleufs.c .else CPPFLAGS+= -DNO_APPLE_UFS .endif CPPFLAGS+= -DSMALL CPPFLAGS+= -DNO_IOBUF_ALIGNED .PATH: ${SRCDIR} .include "${SRCDIR}/Makefile.common" .include