summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorkato <kato@FreeBSD.org>1997-10-12 11:56:06 +0000
committerkato <kato@FreeBSD.org>1997-10-12 11:56:06 +0000
commitc5c8794e7f2d4856904e3154344c29327a2587aa (patch)
tree0e48bf8ad88d98453f4292b948202350ab2417a9 /sys
parent1dec1c3d6b31fe711d3c729486fb8674aba13419 (diff)
downloadFreeBSD-src-c5c8794e7f2d4856904e3154344c29327a2587aa.zip
FreeBSD-src-c5c8794e7f2d4856904e3154344c29327a2587aa.tar.gz
Synchronize with sys/i386/boot/netboot/Makefile revision 1.14.
Diffstat (limited to 'sys')
-rw-r--r--sys/pc98/boot/netboot/Makefile18
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/pc98/boot/netboot/Makefile b/sys/pc98/boot/netboot/Makefile
index 19d13af..3fae1eb 100644
--- a/sys/pc98/boot/netboot/Makefile
+++ b/sys/pc98/boot/netboot/Makefile
@@ -79,16 +79,18 @@ nb3c509.rom: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} 3c509.o
${.OBJDIR}/makerom ${.TARGET}
nb8390.com: makerom start2.ro ${SRCS:N*.h:R:S/$/.o/g} ns8390.o
- ${LD} ${LDFLAGS} -o netboot.com ${OBJS} ns8390.o
- strip netboot.com
- size netboot.com
- dd ibs=32 skip=1 if=netboot.com of=${.TARGET}
+ ${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} ns8390.o
+ strip ${.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} ${LDFLAGS} -o netboot.com ${OBJS} 3c509.o
- strip netboot.com
- size netboot.com
- dd ibs=32 skip=1 if=netboot.com of=${.TARGET}
+ ${LD} ${LDFLAGS} -o ${.TARGET}.tmp ${OBJS} 3c509.o
+ strip ${.TARGET}.tmp
+ size ${.TARGET}.tmp
+ dd ibs=32 skip=1 if=${.TARGET}.tmp of=${.TARGET}
+ rm -f ${.TARGET}.tmp
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud