blob: d4e9fa66680e60d9e9656a1f25990e8325e28f79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.2 2009/04/17 03:58:55 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
.ifdef RELEASEDIR
install:
cp ${RELEASEDIR}/${FLOPPY} ${RELEASEDIR}/${CDROM}
.endif
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
|