Makefile revision 1.5
11.5Sgmcgarry# $NetBSD: Makefile,v 1.5 2001/11/08 07:45:25 gmcgarry Exp $ 21.1Sthorpej 31.1SthorpejPROGAOUT= inst 41.1SthorpejPROGSOURCE= inst.c 51.1SthorpejNEWVERSWHAT= "Miniroot Installer" 61.2Sthorpej 71.2SthorpejCPPFLAGS+= -DSUPPORT_ETHERNET -DSUPPORT_TAPE -DSUPPORT_DISK 81.1Sthorpej 91.1Sthorpejinstall: 101.5Sgmcgarry ${INSTALL} -d -m 755 -o ${BINOWN} -g ${BINGRP} ${INSTPRIV} \ 111.1Sthorpej ${DESTDIR}${BINDIR}/rbootd 121.5Sgmcgarry ${INSTALL} ${COPY} -m 444 -o ${BINOWN} -g ${BINGRP} ${INSTPRIV} \ 131.5Sgmcgarry inst.lif ${DESTDIR}${BINDIR}/inst.lif 141.1Sthorpej rm -f ${DESTDIR}${BINDIR}/rbootd/SYS_INST 151.1Sthorpej ln ${DESTDIR}${BINDIR}/inst.lif ${DESTDIR}${BINDIR}/rbootd/SYS_INST 161.3She 171.3She.ifndef RELEASEDIR 181.3Sherelease: 191.3She @echo setenv RELEASEDIR first 201.3She @false 211.3She.else 221.3Sherelease: inst.lif 231.3She mkdir -p $(RELEASEDIR)/installation/misc 241.3She rm -f $(RELEASEDIR)/installation/misc/SYS_INST 251.4Ssimonb ${INSTALL} ${COPY} -m 444 inst.lif \ 261.4Ssimonb $(RELEASEDIR)/installation/misc/SYS_INST 271.3She.endif # RELEASEDIR check 281.1Sthorpej 291.1Sthorpej.include "../Makefile.buildboot" 30