blob: 43c1b120dd6c046a572da4d4065a1341d46f6977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.3 2002/06/09 05:53:55 todd Exp $
# $NetBSD: Makefile,v 1.1 1995/10/01 21:22:40 ragge Exp $
#
# Create RX33 floppies.
.include "../Makefile.inc"
all:
cp ../inst/bootroot-${REV}.fs rx33-bootdisk-${REV}
dd if=../inst/miniroot-${REV}.fs of=rx33-copy1-${REV} bs=512 count=2400
dd if=../inst/miniroot-${REV}.fs of=rx33-copy2-${REV} \
bs=512 skip=2400 count=2400
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|