Home | History | Annotate | Line # | Download | only in inst
Makefile revision 1.1.26.1
      1  1.1.26.1   bouyer #	$NetBSD: Makefile,v 1.1.26.1 2000/11/20 20:08:10 bouyer Exp $
      2       1.1  thorpej 
      3       1.1  thorpej PROGAOUT=	inst
      4       1.1  thorpej PROGSOURCE=	inst.c
      5       1.1  thorpej NEWVERSWHAT=	"Miniroot Installer"
      6       1.1  thorpej 
      7  1.1.26.1   bouyer CPPFLAGS+=	-DSUPPORT_ETHERNET -DSUPPORT_TAPE -DSUPPORT_DISK
      8  1.1.26.1   bouyer 
      9       1.1  thorpej install:
     10       1.1  thorpej 	${INSTALL} -d -m 755 -o ${BINOWN} -g ${BINGRP} \
     11       1.1  thorpej 	    ${DESTDIR}${BINDIR}/rbootd
     12  1.1.26.1   bouyer 	${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 inst.lif \
     13       1.1  thorpej 	    ${DESTDIR}${BINDIR}/inst.lif
     14       1.1  thorpej 	rm -f ${DESTDIR}${BINDIR}/rbootd/SYS_INST
     15       1.1  thorpej 	ln ${DESTDIR}${BINDIR}/inst.lif ${DESTDIR}${BINDIR}/rbootd/SYS_INST
     16  1.1.26.1   bouyer 
     17  1.1.26.1   bouyer .ifndef RELEASEDIR
     18  1.1.26.1   bouyer release:
     19  1.1.26.1   bouyer 	@echo setenv RELEASEDIR first
     20  1.1.26.1   bouyer 	@false
     21  1.1.26.1   bouyer .else
     22  1.1.26.1   bouyer release: inst.lif
     23  1.1.26.1   bouyer 	mkdir -p $(RELEASEDIR)/installation/misc
     24  1.1.26.1   bouyer 	rm -f $(RELEASEDIR)/installation/misc/SYS_INST
     25  1.1.26.1   bouyer 	${INSTALL} ${COPY} -m 444 inst.lif \
     26  1.1.26.1   bouyer 	    $(RELEASEDIR)/installation/misc/SYS_INST
     27  1.1.26.1   bouyer .endif # RELEASEDIR check
     28       1.1  thorpej 
     29       1.1  thorpej .include "../Makefile.buildboot"
     30