Home | History | Annotate | Line # | Download | only in uboot
Makefile revision 1.1
      1  1.1  thorpej #	$NetBSD: Makefile,v 1.1 1997/02/04 03:53:06 thorpej Exp $
      2  1.1  thorpej 
      3  1.1  thorpej PROGAOUT=	uboot
      4  1.1  thorpej PROGSOURCE=	uboot.c tgets.c
      5  1.1  thorpej NEWVERSWHAT=	"Primary Boot"
      6  1.1  thorpej 
      7  1.1  thorpej install:
      8  1.1  thorpej 	${INSTALL} -d -m 755 -o ${BINOWN} -g ${BINGRP} \
      9  1.1  thorpej 	    ${DESTDIR}${BINDIR}/rbootd
     10  1.1  thorpej 	${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 uboot.lif \
     11  1.1  thorpej 	    ${DESTDIR}${BINDIR}/uboot.lif
     12  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/rdboot
     13  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/rdboot
     14  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/bootrd
     15  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootrd
     16  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/sdboot
     17  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/sdboot
     18  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/bootsd
     19  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootsd
     20  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/ctboot
     21  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/ctboot
     22  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/bootct
     23  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootct
     24  1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/rbootd/SYS_UBOOT
     25  1.1  thorpej 	ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/rbootd/SYS_UBOOT
     26  1.1  thorpej 
     27  1.1  thorpej .include "../Makefile.buildboot"
     28