Provided entry point (_boot1) to ld.

Use DESTDIR when installing.
This commit is contained in:
pk 1993-10-18 13:34:26 +00:00
parent 0e9ecd46ec
commit 14ba800a2f
1 changed files with 21 additions and 21 deletions

View File

@ -22,7 +22,7 @@
# any improvements or extensions that they make and grant Carnegie Mellon
# the rights to redistribute these changes.
#
# $Id: Makefile,v 1.8 1993/09/15 22:17:54 cgd Exp $
# $Id: Makefile,v 1.9 1993/10/18 13:34:26 pk Exp $
#
wd0:
@ -50,7 +50,7 @@ OBJS = start.o table.o boot2.o boot.o asm.o bios.o io.o disk.o sys.o
$(CC) $(CFLAGS) -c $<
boot: $(OBJS)
$(LD) -N -T 0 -o boot $(OBJS) $(LIBS)
$(LD) -Bstatic -e _boot1 -N -T 0 -o boot $(OBJS) $(LIBS)
cp boot boot.sym
@strip boot
@sh ${.CURDIR}/rmaouthdr boot boot.tmp
@ -63,31 +63,31 @@ biosboot: boot
bootbios: boot
dd if=boot of=bootbios skip=1
/usr/mdec/bootsd: bootbios
cp bootbios /usr/mdec/bootsd
${DESTDIR}/usr/mdec/bootsd: bootbios
cp bootbios ${DESTDIR}/usr/mdec/bootsd
/usr/mdec/sdboot: biosboot
cp biosboot /usr/mdec/sdboot
${DESTDIR}/usr/mdec/sdboot: biosboot
cp biosboot ${DESTDIR}/usr/mdec/sdboot
/usr/mdec/bootwd: /usr/mdec/bootsd
rm -f /usr/mdec/bootwd
ln /usr/mdec/bootsd /usr/mdec/bootwd
${DESTDIR}/usr/mdec/bootwd: ${DESTDIR}/usr/mdec/bootsd
rm -f ${DESTDIR}/usr/mdec/bootwd
ln ${DESTDIR}/usr/mdec/bootsd ${DESTDIR}/usr/mdec/bootwd
/usr/mdec/wdboot: /usr/mdec/sdboot
rm -f /usr/mdec/wdboot
ln /usr/mdec/sdboot /usr/mdec/wdboot
${DESTDIR}/usr/mdec/wdboot: ${DESTDIR}/usr/mdec/sdboot
rm -f ${DESTDIR}/usr/mdec/wdboot
ln ${DESTDIR}/usr/mdec/sdboot ${DESTDIR}/usr/mdec/wdboot
/usr/mdec/bootfd: /usr/mdec/bootsd
rm -f /usr/mdec/bootfd
ln /usr/mdec/bootsd /usr/mdec/bootfd
${DESTDIR}/usr/mdec/bootfd: ${DESTDIR}/usr/mdec/bootsd
rm -f ${DESTDIR}/usr/mdec/bootfd
ln ${DESTDIR}/usr/mdec/bootsd ${DESTDIR}/usr/mdec/bootfd
/usr/mdec/fdboot: /usr/mdec/sdboot
rm -f /usr/mdec/fdboot
ln /usr/mdec/sdboot /usr/mdec/fdboot
${DESTDIR}/usr/mdec/fdboot: ${DESTDIR}/usr/mdec/sdboot
rm -f ${DESTDIR}/usr/mdec/fdboot
ln ${DESTDIR}/usr/mdec/sdboot ${DESTDIR}/usr/mdec/fdboot
sd: /usr/mdec/bootsd /usr/mdec/sdboot
wd: /usr/mdec/bootwd /usr/mdec/wdboot
fd: /usr/mdec/bootfd /usr/mdec/fdboot
sd: ${DESTDIR}/usr/mdec/bootsd ${DESTDIR}/usr/mdec/sdboot
wd: ${DESTDIR}/usr/mdec/bootwd ${DESTDIR}/usr/mdec/wdboot
fd: ${DESTDIR}/usr/mdec/bootfd ${DESTDIR}/usr/mdec/fdboot
all: biosboot bootbios