diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-23 15:46:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-10-23 15:46:45 +0000 |
commit | cf056b103de60e54a0b7194ac8b6f13ff12a4998 (patch) | |
tree | ff1b604f3d1bf061116fd80fc0faf6236d15e282 /sys/arch/i386/boot/Makefile | |
parent | a87a90f3ed62f27630df2f2d38d6bf45a229c507 (diff) |
no libkern
Diffstat (limited to 'sys/arch/i386/boot/Makefile')
-rw-r--r-- | sys/arch/i386/boot/Makefile | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/sys/arch/i386/boot/Makefile b/sys/arch/i386/boot/Makefile index 8bf08851179..0ccde521bb7 100644 --- a/sys/arch/i386/boot/Makefile +++ b/sys/arch/i386/boot/Makefile @@ -26,15 +26,6 @@ S= ${.CURDIR}/../../.. -### find out what to use for libkern -KERNREL= -.include "$S/lib/libkern/Makefile.inc" -.ifndef PROF -LIBKERN= ${KERNLIB} -.else -LIBKERN= ${KERNLIB_PROF} -.endif - machine-links: -rm -f machine && \ ln -s ${.CURDIR}/../include machine @@ -55,8 +46,8 @@ CFLAGS+=-DDO_BAD144 -I. -I${.CURDIR} -I$S -I${.CURDIR}/../.. # start.o should be first OBJS= start.o table.o boot.o asm.o bios.o io.o disk.o sys.o version.o -boot: ${OBJS} ${LIBKERN} - ${LD} -Bstatic -e start -N -T 0 -o boot ${OBJS} ${LIBKERN} +boot: ${OBJS} + ${LD} -Bstatic -e start -N -T 0 -o boot ${OBJS} cp boot boot.sym @strip boot @sh ${.CURDIR}/rmaouthdr boot boot.tmp |