1#	$NetBSD: Makefile.bootfloppy,v 1.12 2002/05/12 10:48:35 lukem Exp $
2#
3# Makefile snippet to create a set of USTAR floppies
4#
5
6#
7# Required variables:
8#	FLOPPYBASE	Basename of floppies. Floppy number ${n} will
9#			be generated as ${FLOPPYBASE}${n}.fs
10#	FLOPPYKERNDIR	${FLOPPYKERNEL} is from ${.CURDIR}/../${FLOPPYKERNDIR}
11#	FLOPPYKERNEL	Kernel to copy
12#
13# Optional variables:
14#	FLOPPY_BOOT	Bootstrap to use.  [${DESTDIR}/usr/mdec/biosboot.sym]
15#
16
17.include <bsd.own.mk>
18.include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
19
20FLOPPYSIZE?=		2880
21.if defined(FLOPPYSIZE) && (${FLOPPYSIZE} != 2880)
22FLOPPYMETAFILE!=	printf "USTAR.volsize.%o" ${FLOPPYSIZE}
23.else
24FLOPPYSIZE=	2880
25.endif
26FLOPPYSUFFIX?=		.fs
27MDEC=			${DESTDIR}/usr/mdec
28#	XXXDISTRIB: need MI installboot for i386
29FLOPPYINSTBOOT=		"${MDEC}/installboot -b 17 -f ${FLOPPY_BOOT} @IMAGE@"
30FLOPPYKERNOBJ!=		cd ${.CURDIR}/../${FLOPPYKERNDIR} && ${PRINTOBJDIR}
31
32FLOPPY_BOOT?=		${MDEC}/biosboot.sym
33FLOPPY_BOOT_STRIP=	yes
34FLOPPY_NETBSD=		${FLOPPYKERNOBJ}/${FLOPPYKERNEL}
35FLOPPYFILES=		boot ${FLOPPYMETAFILE} netbsd
36
37FLOPPY_RELEASEDIR=	installation/floppy
38
39.include "${DISTRIBDIR}/common/Makefile.tarfloppy"
40
41.include <bsd.prog.mk>
42