From d064cabcab79178842db53420fdf21c6a79b96df Mon Sep 17 00:00:00 2001 From: KATO Takenori Date: Sun, 12 Oct 1997 11:56:06 +0000 Subject: [PATCH] Synchronize with sys/i386/boot/netboot/Makefile revision 1.14. --- sys/pc98/boot/netboot/Makefile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/sys/pc98/boot/netboot/Makefile b/sys/pc98/boot/netboot/Makefile index 19d13af06d47..3fae1ebadd31 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