diff options
-rw-r--r-- | Makefile.inc1 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1 index daf8155..01da390 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1,5 +1,5 @@ # -# $Id: Makefile.inc1,v 1.44 1998/11/20 02:03:52 jdp Exp $ +# $Id: Makefile.inc1,v 1.45 1998/11/28 08:19:24 jkh Exp $ # # Make command line options: # -DCLOBBER will remove /usr/include @@ -761,6 +761,9 @@ _linux= lkm/linux .if ${MACHINE_ARCH} == i386 _kldlinux= sys/modules/linux .endif +.if ${OBJFORMAT} == "aout" +_netboot= sys/${MACHINE}/boot/netboot +.endif BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS @@ -857,7 +860,8 @@ build-tools: lib/libmytinfo \ ${_linux} \ ${_kldlinux} \ - ${_scrnmaps} + ${_scrnmaps} \ + ${_netboot} cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} build-tools .endfor cd ${.CURDIR}/usr.bin/tn3270/tools; ${MAKE} ${BTMAKEFLAGS} all |