summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>1998-11-28 08:03:24 +0000
committerjoerg <joerg@FreeBSD.org>1998-11-28 08:03:24 +0000
commit9d28e1f2b26eadf188cdf71a161814cf55b98300 (patch)
tree3136554b760f0b8ed25d2ce0cb273a417d344297 /sys
parent09596be77be2fce07f4db28dbd9ebb2cb373fbcd (diff)
downloadFreeBSD-src-9d28e1f2b26eadf188cdf71a161814cf55b98300.zip
FreeBSD-src-9d28e1f2b26eadf188cdf71a161814cf55b98300.tar.gz
Fix my breakage of `make installworld'. However, i don't think it's right to
install all those images at all (nor to install them under /usr/mdec), given the high degree of customization this Makefile needs in order to get images that are actually useful for some NIC. Submitted by: John Hay <jhay@mikom.csir.co.za>, Paul Allenby <pallenby@mikom.csir.co.za>
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/boot/netboot/Makefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/i386/boot/netboot/Makefile b/sys/i386/boot/netboot/Makefile
index 3d8da3d..ea734b92 100644
--- a/sys/i386/boot/netboot/Makefile
+++ b/sys/i386/boot/netboot/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.19 1998/07/07 02:43:26 bde Exp $
+# $Id: Makefile,v 1.20 1998/11/26 11:11:29 joerg Exp $
#
# Makefile for NETBOOT
#
@@ -44,7 +44,8 @@ CLEANFILES+= makerom start2.ro 3c509.o ns8390.o
ROMLDFLAGS= ${LDFLAGS} -N -T ${RELOCADDR} -e _start -nostdlib
NOSHARED= YES
MAN8= netboot.8
-STRIP= strip -aout
+STRIP=
+STRIPCMD= strip -aout
SIZE= size -aout
CFLAGS += -aout
LDFLAGS += -aout
@@ -68,26 +69,26 @@ makerom: makerom.c
nb8390.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
${LD} ${ROMLDFLAGS} -o ${.TARGET} ${OBJS:S/start2.o/start2.ro/} ns8390.o
- ${STRIP} ${.TARGET}
+ ${STRIPCMD} ${.TARGET}
${SIZE} ${.TARGET}
${.OBJDIR}/makerom ${.TARGET}
nb3c509.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} 3c509.o
${LD} ${ROMLDFLAGS} -o ${.TARGET} ${OBJS:S/start2.o/start2.ro/} 3c509.o
- ${STRIP} ${.TARGET}
+ ${STRIPCMD} ${.TARGET}
${SIZE} ${.TARGET}
${.OBJDIR}/makerom ${.TARGET}
nb8390.com: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
${LD} ${ROMLDFLAGS} -o ${.TARGET}.tmp ${OBJS} ns8390.o
- ${STRIP} ${.TARGET}.tmp
+ ${STRIPCMD} ${.TARGET}.tmp
${SIZE} ${.TARGET}.tmp
dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET}
rm -f ${.TARGET}.tmp
nb3c509.com: start2.o ${SRCS:N*.h:R:S/$/.o/g} 3c509.o
${LD} ${ROMLDFLAGS} -o ${.TARGET}.tmp ${OBJS} 3c509.o
- ${STRIP} ${.TARGET}.tmp
+ ${STRIPCMD} ${.TARGET}.tmp
${SIZE} ${.TARGET}.tmp
dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET}
rm -f ${.TARGET}.tmp
OpenPOWER on IntegriCloud