Add support for cleandepend, ${DESTDIR}, and there not being a file named

${DESTDIR}/kernel.
This commit is contained in:
Eivind Eklund 1998-01-31 04:23:15 +00:00
parent c6de6a69a1
commit c6b60f62de
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=32924
3 changed files with 33 additions and 18 deletions

View File

@ -1,7 +1,7 @@
# Makefile.i386 -- with config changes.
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
# $Id: Makefile.i386,v 1.105 1997/11/06 03:11:30 msmith Exp $
# $Id: Makefile.i386,v 1.106 1997/12/18 21:03:04 bde Exp $
#
# Makefile for FreeBSD
#
@ -183,6 +183,9 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND}
rm -f .depend
mv -f .newdep .depend
cleandepend:
rm -f .depend
links:
egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \
sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
@ -199,16 +202,18 @@ install:
echo "You must first build your kernel before trying to install." ; \
exit 1 ; \
fi
chflags noschg /kernel
mv /kernel /kernel.old
.if exists(${DESTDIR}/kernel)
chflags noschg ${DESTDIR}/kernel
mv ${DESTDIR}/kernel ${DESTDIR}/kernel.old
.endif
PATH=$${PATH}:/sbin:/usr/sbin; \
if [ `sysctl -n kern.bootfile` = /kernel ] ; then \
sysctl -w kern.bootfile=/kernel.old ; \
if [ `sysctl -n kern.bootfile` = ${DESTDIR}/kernel ] ; then \
sysctl -w kern.bootfile=${DESTDIR}/kernel.old ; \
if [ -f /var/db/kvm_kernel.db ] ; then \
mv -f /var/db/kvm_kernel.db /var/db/kvm_kernel.old.db ; \
fi \
fi
install -c -m 555 -o root -g wheel -fschg kernel /
install -c -m 555 -o root -g wheel -fschg kernel ${DESTDIR}/
ioconf.o: ioconf.c $S/sys/param.h $S/sys/buf.h \
${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h

View File

@ -1,7 +1,7 @@
# Makefile.i386 -- with config changes.
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
# $Id: Makefile.i386,v 1.105 1997/11/06 03:11:30 msmith Exp $
# $Id: Makefile.i386,v 1.106 1997/12/18 21:03:04 bde Exp $
#
# Makefile for FreeBSD
#
@ -183,6 +183,9 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND}
rm -f .depend
mv -f .newdep .depend
cleandepend:
rm -f .depend
links:
egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \
sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
@ -199,16 +202,18 @@ install:
echo "You must first build your kernel before trying to install." ; \
exit 1 ; \
fi
chflags noschg /kernel
mv /kernel /kernel.old
.if exists(${DESTDIR}/kernel)
chflags noschg ${DESTDIR}/kernel
mv ${DESTDIR}/kernel ${DESTDIR}/kernel.old
.endif
PATH=$${PATH}:/sbin:/usr/sbin; \
if [ `sysctl -n kern.bootfile` = /kernel ] ; then \
sysctl -w kern.bootfile=/kernel.old ; \
if [ `sysctl -n kern.bootfile` = ${DESTDIR}/kernel ] ; then \
sysctl -w kern.bootfile=${DESTDIR}/kernel.old ; \
if [ -f /var/db/kvm_kernel.db ] ; then \
mv -f /var/db/kvm_kernel.db /var/db/kvm_kernel.old.db ; \
fi \
fi
install -c -m 555 -o root -g wheel -fschg kernel /
install -c -m 555 -o root -g wheel -fschg kernel ${DESTDIR}/
ioconf.o: ioconf.c $S/sys/param.h $S/sys/buf.h \
${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h

View File

@ -1,7 +1,7 @@
# Makefile.i386 -- with config changes.
# Copyright 1990 W. Jolitz
# from: @(#)Makefile.i386 7.1 5/10/91
# $Id: Makefile.i386,v 1.105 1997/11/06 03:11:30 msmith Exp $
# $Id: Makefile.i386,v 1.106 1997/12/18 21:03:04 bde Exp $
#
# Makefile for FreeBSD
#
@ -183,6 +183,9 @@ depend: assym.s param.c vnode_if.h ${BEFORE_DEPEND}
rm -f .depend
mv -f .newdep .depend
cleandepend:
rm -f .depend
links:
egrep '#if' ${CFILES:Nswapkernel.c} | sed -f $S/conf/defines | \
sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
@ -199,16 +202,18 @@ install:
echo "You must first build your kernel before trying to install." ; \
exit 1 ; \
fi
chflags noschg /kernel
mv /kernel /kernel.old
.if exists(${DESTDIR}/kernel)
chflags noschg ${DESTDIR}/kernel
mv ${DESTDIR}/kernel ${DESTDIR}/kernel.old
.endif
PATH=$${PATH}:/sbin:/usr/sbin; \
if [ `sysctl -n kern.bootfile` = /kernel ] ; then \
sysctl -w kern.bootfile=/kernel.old ; \
if [ `sysctl -n kern.bootfile` = ${DESTDIR}/kernel ] ; then \
sysctl -w kern.bootfile=${DESTDIR}/kernel.old ; \
if [ -f /var/db/kvm_kernel.db ] ; then \
mv -f /var/db/kvm_kernel.db /var/db/kvm_kernel.old.db ; \
fi \
fi
install -c -m 555 -o root -g wheel -fschg kernel /
install -c -m 555 -o root -g wheel -fschg kernel ${DESTDIR}/
ioconf.o: ioconf.c $S/sys/param.h $S/sys/buf.h \
${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h