xref: /netbsd-src/distrib/vax/rx50/Makefile (revision 2a399c6883d870daece976daec6ffa7bb7f934ce)
1#	$NetBSD: Makefile,v 1.1 1995/10/01 21:22:42 ragge Exp $
2#
3#	Create RX50 floppies.
4
5.include "../Makefile.inc"
6
7all:
8	cp ../inst/bootroot-${REV}.fs rx50-bootdisk-${REV}
9	dd if=../inst/miniroot-${REV}.fs of=rx50-copy1-${REV} bs=512 count=800
10	dd if=../inst/miniroot-${REV}.fs of=rx50-copy2-${REV} \
11		bs=512 skip=800 count=800
12	dd if=../inst/miniroot-${REV}.fs of=rx50-copy3-${REV} \
13		bs=512 skip=1600 count=800
14	dd if=../inst/miniroot-${REV}.fs of=rx50-copy4-${REV} \
15		bs=512 skip=2400 count=800
16	dd if=../inst/miniroot-${REV}.fs of=rx50-copy5-${REV} \
17		bs=512 skip=3200 count=800
18	dd if=../inst/miniroot-${REV}.fs of=rx50-copy6-${REV} \
19		bs=512 skip=4000 count=800
20
21.include <bsd.obj.mk>
22.include <bsd.subdir.mk>
23