diff options
author | bde <bde@FreeBSD.org> | 1997-04-25 19:38:01 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-25 19:38:01 +0000 |
commit | 6b593dbda89fee41d73f2786dcf66d051b34f6e7 (patch) | |
tree | 7dddbf66776db07d144b7d6991b3281bf60fc035 | |
parent | 71dc5f627691cd0656d8fd74253f0bb7dc61f556 (diff) | |
download | FreeBSD-src-6b593dbda89fee41d73f2786dcf66d051b34f6e7.zip FreeBSD-src-6b593dbda89fee41d73f2786dcf66d051b34f6e7.tar.gz |
Removed LDADD=-lc and associated DPADD. libc would probably break
things if it were actually used.
-rw-r--r-- | sys/i386/boot/biosboot/Makefile | 4 | ||||
-rw-r--r-- | sys/i386/boot/rawboot/Makefile | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index ddd4e00..260c3b6 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.54 1997/02/22 09:30:00 peter Exp $ +# $Id: Makefile,v 1.55 1997/03/05 15:43:03 bde Exp $ # PROG= boot @@ -57,9 +57,7 @@ CFLAGS+= -DCONSPEED=${BOOT_COMCONSOLE_SPEED} # BOOT_HD_BIAS=1 makes sd(0,a) correspond to 1:sd(0,a) instead of 0:sd(0,a). CLEANFILES+= boot.nohdr boot.strip boot1 boot2 sizetest -DPADD= ${LIBC} LDFLAGS+= -N -T 0 -nostdlib -LDADD= -lc #LINKS= ${BINDIR}/sdboot ${BINDIR}/wdboot\ # ${BINDIR}/sdboot ${BINDIR}/fdboot\ # ${BINDIR}/bootsd ${BINDIR}/bootwd\ diff --git a/sys/i386/boot/rawboot/Makefile b/sys/i386/boot/rawboot/Makefile index f2c6ba4..e29cffb 100644 --- a/sys/i386/boot/rawboot/Makefile +++ b/sys/i386/boot/rawboot/Makefile @@ -1,4 +1,4 @@ -# $Id$ +# $Id: Makefile,v 1.6 1997/02/22 09:31:30 peter Exp $ # PROG= boot @@ -58,9 +58,7 @@ CFLAGS+= -DCOMCONSOLE=${BOOT_COMCONSOLE_PORT} # BOOT_HD_BIAS=1 makes sd(0,a) correspond to 1:sd(0,a) instead of 0:sd(0,a). CLEANFILES+= boot.nohdr boot.strip rawboot sizetest -DPADD= ${LIBC} LDFLAGS+= -N -T 0 -nostdlib -LDADD= -lc NOSHARED= YES NOMAN= STRIP= |