Home | History | Annotate | Line # | Download | only in macppc
Makefile revision 1.6
      1  1.6   matt #	$NetBSD: Makefile,v 1.6 2000/09/13 15:49:27 matt Exp $
      2  1.2   matt 
      3  1.2   matt .include <bsd.own.mk>		# Use /etc/mk.conf.
      4  1.2   matt 
      5  1.2   matt ITARGET=	${RELEASEDIR}/installation
      6  1.2   matt IINST=		${INSTALL} ${RENAME} ${PRESERVE} ${COPY}	\
      7  1.2   matt 		-o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE}
      8  1.1   matt 
      9  1.1   matt SUBDIR=	floppies
     10  1.1   matt 
     11  1.2   matt .include <bsd.subdir.mk>
     12  1.2   matt 
     13  1.2   matt .ifndef RELEASEDIR
     14  1.2   matt release:
     15  1.2   matt 	@echo setenv RELEASEDIR first
     16  1.2   matt 	@false
     17  1.2   matt .else
     18  1.6   matt BOOTFLOPOBJ != cd ${.CURDIR}/floppies/bootfloppy; ${MAKE} print-objdir
     19  1.5  jhawk BOOTOBJ != cd ${.CURDIR}/../../sys/arch/macppc/stand/ofwboot; ${MAKE} print-objdir
     20  1.1   matt 
     21  1.2   matt release:
     22  1.2   matt 	${IINST} ${BOOTOBJ}/ofwboot.elf ${ITARGET}/
     23  1.3   matt 	${IINST} ${BOOTOBJ}/ofwboot.xcf ${ITARGET}/
     24  1.4   matt 	${IINST} ${BOOTFLOPOBJ}/boot.fs ${ITARGET}/
     25  1.4   matt 	${IINST} ${BOOTFLOPOBJ}/netbsd.ram.gz ${ITARGET}/
     26  1.2   matt .endif
     27