Home | History | Annotate | Line # | Download | only in instkernel
Makefile revision 1.1.2.1
      1  1.1.2.1    simonb #	$NetBSD: Makefile,v 1.1.2.1 1999/04/05 15:07:18 simonb Exp $
      2      1.1  jonathan 
      3      1.1  jonathan 
      4      1.1  jonathan KERN=	${.CURDIR}/../../../sys/arch/pmax/compile/RAMDISK/netbsd
      5      1.1  jonathan RAMDISK!=cd ${.CURDIR}/../ramdisk; \
      6      1.1  jonathan 	printf "xxx: .MAKE\n\t@echo \$${.OBJDIR}/ramdisk.fs\n" | \
      7      1.1  jonathan 	${MAKE} -s -f-
      8      1.1  jonathan CLEANFILES= netbsd.tmp netbsd.ecoff netbsd.ecoff.gz \
      9      1.1  jonathan 	    netbsd.aout netbsd.aout.gz
     10      1.1  jonathan 
     11  1.1.2.1    simonb all:	netbsd.gz
     12      1.1  jonathan 
     13  1.1.2.1    simonb netbsd.gz: ${KERN} ${RAMDISK}
     14  1.1.2.1    simonb 	cp ${KERN} netbsd
     15  1.1.2.1    simonb 	mdsetimage -v netbsd ${RAMDISK}
     16  1.1.2.1    simonb 	elf2ecoff netbsd netbsd.ecoff
     17      1.1  jonathan 	rm -f netbsd.ecoff.gz
     18  1.1.2.1    simonb 	gzip -9 netbsd.ecoff
     19  1.1.2.1    simonb 	rm -f netbsd.gz
     20  1.1.2.1    simonb 	gzip -9 netbsd
     21      1.1  jonathan 
     22      1.1  jonathan clean cleandir distclean:
     23      1.1  jonathan 	rm -f ${CLEANFILES}
     24      1.1  jonathan 
     25      1.1  jonathan .include <bsd.own.mk>
     26      1.1  jonathan .include <bsd.obj.mk>
     27