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