summaryrefslogtreecommitdiff
path: root/distrib
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-02-25 19:52:06 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-02-25 19:52:06 +0000
commitd3f36b4e655c45db6e8891b059a0d0d17e2877e7 (patch)
tree1fb1d9b1be0ccf91baaec9ae07d897608d3adfa0 /distrib
parent1b7efa591bfd733fde4efaebf52ea4c6418349a6 (diff)
the floppy can be used when burned onto a CD, so ... just copy it into the
final directory, since it is small enough; tested by maja
Diffstat (limited to 'distrib')
-rw-r--r--distrib/vax/Makefile4
-rw-r--r--distrib/vax/cdfs/Makefile16
2 files changed, 18 insertions, 2 deletions
diff --git a/distrib/vax/Makefile b/distrib/vax/Makefile
index 0122a0bbb41..8ebcfc75c22 100644
--- a/distrib/vax/Makefile
+++ b/distrib/vax/Makefile
@@ -1,6 +1,6 @@
-# $OpenBSD: Makefile,v 1.4 2008/02/24 11:53:10 maja Exp $
+# $OpenBSD: Makefile,v 1.5 2008/02/25 19:52:03 deraadt Exp $
-SUBDIR= ../ramdisk
+SUBDIR= ../ramdisk cdfs
.if make(obj) || make(cleandir) || make(clean)
SUBDIR+= iso
diff --git a/distrib/vax/cdfs/Makefile b/distrib/vax/cdfs/Makefile
new file mode 100644
index 00000000000..fc3e7b167a4
--- /dev/null
+++ b/distrib/vax/cdfs/Makefile
@@ -0,0 +1,16 @@
+# $OpenBSD: Makefile,v 1.1 2008/02/25 19:52:05 deraadt Exp $
+
+TOP= ${.CURDIR}/..
+
+.include "${TOP}/Makefile.inc"
+
+FLOPPY= floppy${REV}.fs
+CDROM= cd${REV}.iso
+
+# The floppy image works fine as a CD image, too
+
+install:
+ cp ${DESTDIR}/snapshot/${FLOPPY} ${DESTDIR}/snapshot/${CDROM}
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>