Makefile revision 1.1
11.1Sthorpej# $NetBSD: Makefile,v 1.1 1997/02/04 03:53:06 thorpej Exp $ 21.1Sthorpej 31.1SthorpejPROGAOUT= uboot 41.1SthorpejPROGSOURCE= uboot.c tgets.c 51.1SthorpejNEWVERSWHAT= "Primary Boot" 61.1Sthorpej 71.1Sthorpejinstall: 81.1Sthorpej ${INSTALL} -d -m 755 -o ${BINOWN} -g ${BINGRP} \ 91.1Sthorpej ${DESTDIR}${BINDIR}/rbootd 101.1Sthorpej ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 uboot.lif \ 111.1Sthorpej ${DESTDIR}${BINDIR}/uboot.lif 121.1Sthorpej rm -f ${DESTDIR}${BINDIR}/rdboot 131.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/rdboot 141.1Sthorpej rm -f ${DESTDIR}${BINDIR}/bootrd 151.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootrd 161.1Sthorpej rm -f ${DESTDIR}${BINDIR}/sdboot 171.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/sdboot 181.1Sthorpej rm -f ${DESTDIR}${BINDIR}/bootsd 191.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootsd 201.1Sthorpej rm -f ${DESTDIR}${BINDIR}/ctboot 211.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/ctboot 221.1Sthorpej rm -f ${DESTDIR}${BINDIR}/bootct 231.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/bootct 241.1Sthorpej rm -f ${DESTDIR}${BINDIR}/rbootd/SYS_UBOOT 251.1Sthorpej ln ${DESTDIR}${BINDIR}/uboot.lif ${DESTDIR}${BINDIR}/rbootd/SYS_UBOOT 261.1Sthorpej 271.1Sthorpej.include "../Makefile.buildboot" 28