kernel now linked with dist ld.

This commit is contained in:
chopps 1994-02-22 02:06:25 +00:00
parent ad9cc8b5da
commit dce197fded
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# @(#)Makefile.hp300 7.10 (Berkeley) 6/27/91
# $Id: Makefile.amiga,v 1.9 1994/02/17 09:09:57 chopps Exp $
# $Id: Makefile.amiga,v 1.10 1994/02/22 02:06:25 chopps Exp $
#
# Makefile for 4.4 BSD
#
@ -25,7 +25,7 @@
AS= as ${DEBUG}
CC= gcc ${DEBUG}
CPP= /lib/cpp -traditional
LD= kernel-ld
LD= ld
TOUCH= touch -f -c
GPROF.EX=/usr/src/usr.lib/libc/csu/amiga/gmon.ex
@ -77,7 +77,7 @@ SYSTEM_OBJ= locore.o ${OBJS} param.o ioconf.o vers.o ${LIBKERN}
SYSTEM_DEP= Makefile ${SYSTEM_OBJ}
SYSTEM_LD_HEAD= @echo loading $@; rm -f $@
SYSTEM_LD= @strip=-x; [ X${DEBUG} = X-g ] && strip=-X; \
${LD} $$strip -n -o $@ -e start ${SYSTEM_OBJ}
${LD} $$strip -T 0 -n -o $@ -e start ${SYSTEM_OBJ}
#SYSTEM_LD_TAIL= @echo rearranging symbols;\
# symorder symbols.sort $@;\
SYSTEM_LD_TAIL= @size $@; chmod 755 $@; \