Add release targets, intended for use by the src/etc/Makefile `make release'.

This commit is contained in:
ross 1999-06-30 18:36:37 +00:00
parent a406e5332c
commit 147f63da42
1 changed files with 21 additions and 1 deletions

View File

@ -1,5 +1,25 @@
# $NetBSD: Makefile,v 1.1 1998/10/16 01:36:45 ross Exp $
# $NetBSD: Makefile,v 1.2 1999/06/30 18:36:37 ross Exp $
SUBDIR= instkernel floppy-GENERIC
ITARGET= ${RELEASEDIR}/installation
IINST= ${INSTALL} ${RENAME} ${PRESERVE} ${COPY} \
-o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE}
.ifndef RELEASEDIR
release:
@echo setenv RELEASEDIR first
@false
.else
release:
.for i in floppy diskimage instkernel tapeimage
${IINST} README.files ${ITARGET}/$i/.
.endfor
${IINST} instkernel/cd-hd-tape/obj/cdhdtape ${ITARGET}/diskimage/.
${IINST} instkernel/fdset/obj/disk1of2 ${ITARGET}/floppy/.
${IINST} instkernel/fdset/obj/disk2of2 ${ITARGET}/floppy/.
${IINST} instkernel/instkernel/obj/netbsd.gz ${ITARGET}/instkernel/.
${IINST} floppy-GENERIC/obj/GENERIC.fs ${ITARGET}/misc/.
.endif
.include <bsd.subdir.mk>